[packages] aricrack-ng: add fallback download url for old archived versions (closes...
[openwrt/svn-archive/archive.git] / net / aircrack-ng / Makefile
1 #
2 # Copyright (C) 2006-2009 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7
8 include $(TOPDIR)/rules.mk
9
10 PKG_NAME:=aircrack-ng
11 PKG_VERSION:=1.0
12 PKG_RELEASE:=1
13
14 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
15 PKG_SOURCE_URL:=http://download.aircrack-ng.org/ \
16 http://archive.aircrack-ng.org/aircrack-ng/$(PKG_VERSION)/
17 PKG_MD5SUM:=dafbfaf944ca9d523fde4bae86f0c067
18
19 include $(INCLUDE_DIR)/package.mk
20
21 define Package/aircrack-ng
22 SECTION:=net
23 CATEGORY:=Network
24 DEPENDS:=+libpthread +libopenssl +libpcap
25 TITLE:=next generation of aircrack with new features
26 URL:=http://www.aircrack-ng.org/
27 SUBMENU:=wireless
28 endef
29
30 define Package/aircrack-ng/description
31 Aircrack-ng is the next generation of aircrack with new features
32 endef
33
34 define Build/Configure
35 endef
36
37 define Build/Compile
38 $(MAKE) -C $(PKG_BUILD_DIR) \
39 $(TARGET_CONFIGURE_OPTS) \
40 CFLAGS="$(TARGET_CFLAGS) -Wall -Iinclude/ $(TARGET_CPPFLAGS) -D_REVISION=0" \
41 LDFLAGS="$(TARGET_LDFLAGS)" \
42 prefix="/usr" \
43 DESTDIR="$(PKG_INSTALL_DIR)" \
44 OSNAME=Linux \
45 all install
46 endef
47
48 define Package/aircrack-ng/install
49 $(INSTALL_DIR) $(1)/usr/bin
50 $(CP) $(PKG_INSTALL_DIR)/usr/bin/* $(1)/usr/bin/
51 $(INSTALL_DIR) $(1)/usr/sbin
52 $(CP) $(PKG_INSTALL_DIR)/usr/sbin/* $(1)/usr/sbin/
53 endef
54
55 $(eval $(call BuildPackage,aircrack-ng))