blob: d3722c05f18133b2188fdede994dec7ad2c4dc23 [file] [log] [blame]
Brad Bishop1a4b7ee2018-12-16 17:11:34 -08001SUMMARY = "Aircrack-ng is a set of tools for auditing wireless networks"
2DESCRIPTION = "Aircrack-ng is an 802.11 WEP and WPA-PSK keys cracking program that can recover keys once enough data packets have been captured. It implements the standard FMS attack along with some optimizations like KoreK attacks, as well as the PTW attack, thus making the attack much faster compared to other WEP cracking tools."
3SECTION = "security"
Patrick Williams03907ee2022-05-01 06:28:52 -05004LICENSE = "GPL-2.0-only"
Brad Bishop1a4b7ee2018-12-16 17:11:34 -08005
6LIC_FILES_CHKSUM = "file://LICENSE;beginline=1;endline=2;md5=1fbd81241fe252ec0f5658a521ab7dd8"
7
8DEPENDS = "libnl openssl sqlite3 libpcre libpcap"
9
10SRC_URI = "http://download.aircrack-ng.org/${BP}.tar.gz"
11
Andrew Geisslera1a6aef2021-06-25 14:23:58 -050012SRC_URI[md5sum] = "22ddc85549b51ed0da0931d01ef215e5"
13SRC_URI[sha256sum] = "4f0bfd486efc6ea7229f7fbc54340ff8b2094a0d73e9f617e0a39f878999a247"
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080014
15inherit autotools-brokensep pkgconfig
16
17PACKAGECONFIG ?= ""
18CFLAGS += " -I${S}/src/include"
19
20OEMAKE_EXTRA = "sqlite=true experimental=true pcre=true \
21 prefix=${prefix} \
22 "
23
24do_compile () {
25 make ${OEMAKE_EXTRA} TOOL_PREFIX=${TARGET_SYS}-
26}
27
28do_install () {
29 make DESTDIR=${D} ${OEMAKE_EXTRA} ext_scripts=true install
30}
31
Patrick Williams213cb262021-08-07 19:21:33 -050032FILES:${PN} += "${libdir}/*.so"
Andrew Geisslera1a6aef2021-06-25 14:23:58 -050033FILES_SOLIBSDEV = ""
Patrick Williams213cb262021-08-07 19:21:33 -050034INSANE_SKIP:${PN} += "dev-so"
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080035
Patrick Williams213cb262021-08-07 19:21:33 -050036RDEPENDS:${PN} = "libpcap"