aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/aircrack/aircrack_2.41.bb
blob: 723215e2653c3544112b6a07d92d54a8a8d0490c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
SECTION = "console/network"
DESCRIPTION = "Aircrack is a set of tools for wep key statistical cracking"
HOMEPAGE = "http://www.cr0.net:8040/code/network/aircrack/"
LICENSE = "GPLv2"
DEPENDS = ""
PR ="r1"

SRC_URI = "http://www.wirelessdefence.org/Contents/Files/${P}.tgz \
		file://oe.patch;patch=1;pnum=1"

inherit autotools

do_install() {
        install -d ${D}/${sbindir}
        install -d ${D}/${libdir}/${PN}
        install -m 0755 airodump          ${D}/${sbindir}
        install -m 0755 aircrack          ${D}/${sbindir}
        install -m 0755 aireplay          ${D}/${sbindir}
        install -m 0755 airdecap          ${D}/${sbindir}
        install -m 0755 arpforge          ${D}/${sbindir}
        install -m 0755 airmon.sh         ${D}/${sbindir}
        install -m 0755 mergeivs          ${D}/${sbindir}
        install -m 0755 pcap2ivs          ${D}/${sbindir}
}