blob: e5bfb93d843dea53cff22c086dcc8e954afbbf65 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
SECTION = "network/misc"
DESCRIPTION = "DCE Service enumerator for MS Windows systems"
PV = "1.2"
SRC_URI = "http://packetstormsecurity.org/UNIX/scanners/dcetest-2.0.tar.gz"
DEFAULT_PREFERENCE="-1"
S = "${WORKDIR}/dcetest"
LICENSE = "GPL"
do_compile() {
oe_runmake dcetest
}
do_install() {
install -d ${D}${bindir}
install -m 0755 ${S}/dcetest ${D}${bindir}
}
|