c68334331199891c5ffa35715e8c78f1fa441ef2
[openwrt/staging/chunkeey.git] / package / ipset / Makefile
1 #
2 # Copyright (C) 2006 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7 # $Id$
8 #
9 include $(TOPDIR)/rules.mk
10
11 PKG_NAME:=ipset
12 PKG_VERSION:=2.2.3
13 PKG_RELEASE:=1
14
15 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION)-20050914.tar.bz2
16 PKG_SOURCE_URL:=http://ipset.netfilter.org
17 PKG_MD5SUM:=1709424cc2cdb925d4fb6fd5fcaefc26
18 PKG_CAT:=bzcat
19
20 include $(INCLUDE_DIR)/package.mk
21
22 define Package/ipset
23 SECTION:=net
24 CATEGORY:=Network
25 TITLE:=Netfilter ip sets administration utility
26 URL:=http://ipset.netfilter.org/
27 endef
28
29 define Build/Compile
30 $(call Build/Compile/Default, \
31 COPT_FLAGS="$(TARGET_CFLAGS)" \
32 KERNEL_DIR="$(LINUX_DIR)" \
33 )
34 endef
35
36 define Package/ipset/install
37 $(MAKE) -C $(PKG_BUILD_DIR) \
38 DESTDIR="$(1)" \
39 PREFIX="/usr" \
40 install
41 rm -rf $(1)/usr/man
42 endef
43
44 $(eval $(call BuildPackage,ipset))