parent
acce65aaf6
commit
10e84d17e8
@ -0,0 +1,15 @@ |
||||
config BR2_PACKAGE_AIRCRACK |
||||
tristate "aircrack - a set of tools for auditing wireless networks" |
||||
default m if CONFIG_DEVEL |
||||
select BR2_PACKAGE_LIBPTHREAD |
||||
help |
||||
aircrack is a set of tools for auditing wireless networks: |
||||
|
||||
* aircrack: static WEP and WPA-PSK key cracker |
||||
* airdecap: decrypts WEP/WPA capture files |
||||
* aireplay: 802.11 packet injection program |
||||
* airodump: 802.11 packet capture program |
||||
|
||||
http://www.cr0.net:8040/code/network/aircrack/ |
||||
|
||||
|
@ -0,0 +1,43 @@ |
||||
include $(TOPDIR)/rules.mk |
||||
|
||||
PKG_NAME:=aircrack
|
||||
PKG_VERSION:=2.3
|
||||
PKG_RELEASE:=1
|
||||
PKG_MD5SUM:=8c0c88abe107ca26d019d8f43958e60a
|
||||
|
||||
PKG_SOURCE_URL:=http://www.cr0.net:8040/code/network/
|
||||
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tgz
|
||||
PKG_CAT:=zcat
|
||||
|
||||
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
|
||||
PKG_INSTALL_DIR:=$(PKG_BUILD_DIR)/ipkg-install
|
||||
|
||||
include $(TOPDIR)/package/rules.mk |
||||
|
||||
$(eval $(call PKG_template,AIRCRACK,aircrack,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH))) |
||||
|
||||
$(PKG_BUILD_DIR)/.configured: |
||||
touch $@
|
||||
|
||||
$(PKG_BUILD_DIR)/.built: |
||||
rm -rf $(PKG_INSTALL_DIR)
|
||||
mkdir -p $(PKG_INSTALL_DIR)
|
||||
$(MAKE) -C $(PKG_BUILD_DIR) \
|
||||
CC="$(TARGET_CC)" \
|
||||
CFLAGS="$(TARGET_CFLAGS) -Wall" \
|
||||
CROSS="$(TARGET_CROSS)" \
|
||||
prefix="/usr" \
|
||||
DESTDIR="$(PKG_INSTALL_DIR)" \
|
||||
all install
|
||||
touch $@
|
||||
|
||||
$(IPKG_AIRCRACK): |
||||
install -d -m0755 $(IDIR_AIRCRACK)/usr/bin
|
||||
cp -fpR $(PKG_INSTALL_DIR)/usr/bin/aircrack $(IDIR_AIRCRACK)/usr/bin/
|
||||
cp -fpR $(PKG_INSTALL_DIR)/usr/bin/airdecap $(IDIR_AIRCRACK)/usr/bin/
|
||||
cp -fpR $(PKG_INSTALL_DIR)/usr/bin/aireplay $(IDIR_AIRCRACK)/usr/bin/
|
||||
cp -fpR $(PKG_INSTALL_DIR)/usr/bin/airodump $(IDIR_AIRCRACK)/usr/bin/
|
||||
cp -fpR $(PKG_INSTALL_DIR)/usr/bin/arpforge $(IDIR_AIRCRACK)/usr/bin/
|
||||
$(RSTRIP) $(IDIR_AIRCRACK)
|
||||
$(IPKG_BUILD) $(IDIR_AIRCRACK) $(PACKAGE_DIR)
|
||||
|
@ -0,0 +1,7 @@ |
||||
Package: aircrack |
||||
Priority: optional |
||||
Section: net |
||||
Maintainer: OpenWrt Developers Team <openwrt-devel@openwrt.org>, Florian Fainelli <florian@alphacore.net> |
||||
Source: buildroot internal |
||||
Depends: libpthread |
||||
Description: A set of tools for auditing wireless networks |
Loading…
Reference in new issue