2006-10-30 13:51:50 +00:00
|
|
|
#
|
2011-05-16 12:33:32 +00:00
|
|
|
# Copyright (C) 2006-2011 OpenWrt.org
|
2006-07-30 16:12:51 +00:00
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_NAME:=aircrack-ng
|
2010-07-07 20:33:46 +00:00
|
|
|
PKG_VERSION:=1.1
|
2011-05-16 12:33:32 +00:00
|
|
|
PKG_RELEASE:=3
|
2006-07-30 16:12:51 +00:00
|
|
|
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
2010-07-07 19:20:17 +00:00
|
|
|
PKG_SOURCE_URL:=http://download.aircrack-ng.org/ \
|
|
|
|
http://archive.aircrack-ng.org/aircrack-ng/$(PKG_VERSION)/
|
2010-07-07 20:33:46 +00:00
|
|
|
PKG_MD5SUM:=f7a24ed8fad122c4187d06bfd6f998b4
|
2006-07-30 16:12:51 +00:00
|
|
|
|
2010-11-03 18:27:15 +00:00
|
|
|
PKG_BUILD_PARALLEL:=0
|
2010-10-11 13:49:02 +00:00
|
|
|
PKG_INSTALL:=1
|
|
|
|
|
2006-07-30 16:12:51 +00:00
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
|
|
|
|
define Package/aircrack-ng
|
|
|
|
SECTION:=net
|
|
|
|
CATEGORY:=Network
|
2008-08-14 21:24:49 +00:00
|
|
|
DEPENDS:=+libpthread +libopenssl +libpcap
|
2007-05-17 21:54:37 +00:00
|
|
|
TITLE:=next generation of aircrack with new features
|
2007-01-08 11:19:08 +00:00
|
|
|
URL:=http://www.aircrack-ng.org/
|
2007-10-18 18:37:22 +00:00
|
|
|
SUBMENU:=wireless
|
2006-07-30 16:12:51 +00:00
|
|
|
endef
|
|
|
|
|
2007-10-14 04:32:56 +00:00
|
|
|
define Package/aircrack-ng/description
|
|
|
|
Aircrack-ng is the next generation of aircrack with new features
|
|
|
|
endef
|
|
|
|
|
2010-10-11 13:49:02 +00:00
|
|
|
MAKE_FLAGS += \
|
|
|
|
CFLAGS="$(TARGET_CFLAGS) -Wall -Iinclude/ $(TARGET_CPPFLAGS) -D_REVISION=0" \
|
|
|
|
LDFLAGS="$(TARGET_LDFLAGS)" \
|
|
|
|
OSNAME=Linux \
|
|
|
|
prefix="/usr" \
|
|
|
|
sqlite="false" \
|
2010-10-11 13:56:14 +00:00
|
|
|
unstable="true"
|
2006-07-30 16:12:51 +00:00
|
|
|
|
|
|
|
define Package/aircrack-ng/install
|
2006-11-23 00:29:07 +00:00
|
|
|
$(INSTALL_DIR) $(1)/usr/bin
|
2008-08-14 15:21:04 +00:00
|
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/bin/* $(1)/usr/bin/
|
2006-11-23 00:29:07 +00:00
|
|
|
$(INSTALL_DIR) $(1)/usr/sbin
|
2008-08-14 15:21:04 +00:00
|
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/sbin/* $(1)/usr/sbin/
|
2006-07-30 16:12:51 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call BuildPackage,aircrack-ng))
|