mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-01 22:49:42 +02:00
bbf7532ca5
git-svn-id: svn://svn.openwrt.org/openwrt/branches/buildroot-ng/openwrt@4622 3c298f89-4303-0410-b956-a3cf2f4a3e73
42 lines
925 B
Makefile
42 lines
925 B
Makefile
#
|
|
# Copyright (C) 2006 OpenWrt.org
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
# $Id$
|
|
#
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=ipset
|
|
PKG_VERSION:=2.2.3
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION)-20050914.tar.bz2
|
|
PKG_SOURCE_URL:=http://ipset.netfilter.org
|
|
PKG_MD5SUM:=1709424cc2cdb925d4fb6fd5fcaefc26
|
|
PKG_CAT:=bzcat
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define Package/ipset
|
|
SECTION:=base
|
|
CATEGORY:=Network
|
|
TITLE:=Netfilter ip sets administration utility
|
|
DESCRIPTION:=Netfilter ip sets administration utility
|
|
URL:=http://ipset.netfilter.org/
|
|
endef
|
|
|
|
define Build/Compile
|
|
$(call Build/Compile/Default,KERNEL_DIR=$(LINUX_DIR))
|
|
endef
|
|
|
|
define Package/ipset/install
|
|
$(MAKE) -C $(PKG_BUILD_DIR) \
|
|
DESTDIR=$(1) PREFIX=/usr install
|
|
rm -rf $(1)/usr/man
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,ipset))
|