diff options
author | Nicolas Thill <nico@openwrt.org> | 2015-02-08 19:05:15 +0100 |
---|---|---|
committer | Nicolas Thill <nico@openwrt.org> | 2015-02-08 19:13:16 +0100 |
commit | bfe2db0bd2f03a029fa6d82b8635fd1b6d3414b2 (patch) | |
tree | 52682aaf3c7dd8015c926be01451ce7971c9fa12 /libs/libnetfilter-acct | |
parent | bf2c0d7fdb85c73d99aea487748e3a81711b607c (diff) |
libnetfilter-acct: fix license, cleanup
Signed-off-by: Nicolas Thill <nico@openwrt.org>
Diffstat (limited to 'libs/libnetfilter-acct')
-rw-r--r-- | libs/libnetfilter-acct/Makefile | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/libs/libnetfilter-acct/Makefile b/libs/libnetfilter-acct/Makefile index b54222ac4..892660716 100644 --- a/libs/libnetfilter-acct/Makefile +++ b/libs/libnetfilter-acct/Makefile @@ -1,5 +1,5 @@ # -# Copyright (C) 2009-2014 OpenWrt.org +# Copyright (C) 2009-2015 OpenWrt.org # # This is free software, licensed under the GNU General Public License v2. # See /LICENSE for more information. @@ -18,7 +18,7 @@ PKG_SOURCE_URL:= \ http://mirrors.evolva.ro/netfilter.org/libnetfilter_acct/ PKG_MD5SUM:=2118d9514c079839ebd9cb3144ad2ad7 -PKG_LICENSE:=LGPL-2.1 +PKG_LICENSE:=LGPL-2.1+ PKG_LICENSE_FILES:=COPYING PKG_MAINTAINER:=Nicolas Thill <nico@openwrt.org> @@ -30,9 +30,9 @@ include $(INCLUDE_DIR)/package.mk define Package/libnetfilter-acct SECTION:=libs CATEGORY:=Libraries - DEPENDS:=+libmnl TITLE:=API to extended accounting infrastructure URL:=http://www.netfilter.org/projects/libnetfilter_acct/ + DEPENDS:=+libmnl endef define Package/libnetfilter-acct/description @@ -46,21 +46,16 @@ CONFIGURE_ARGS += \ --enable-static \ --enable-shared \ -CONFIGURE_VARS += \ - LIBNFNETLINK_CFLAGS="$(TARGET_CPPFLAGS)" \ - LIBNFNETLINK_LIBS="$(TARGET_LDFLAGS)" define Build/InstallDev $(INSTALL_DIR) $(1)/usr/include $(CP) \ $(PKG_INSTALL_DIR)/usr/include/libnetfilter_acct \ $(1)/usr/include/ - $(INSTALL_DIR) $(1)/usr/lib $(CP) \ $(PKG_INSTALL_DIR)/usr/lib/libnetfilter_acct*.{so*,a,la} \ $(1)/usr/lib/ - $(INSTALL_DIR) $(1)/usr/lib/pkgconfig $(CP) \ $(PKG_INSTALL_DIR)/usr/lib/pkgconfig/libnetfilter_acct.pc \ |