diff options
author | Fabian Affolter <fabian@affolter-engineering.ch> | 2013-11-04 13:07:35 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2013-11-20 10:27:29 +0000 |
commit | f2ebaf5b120a529c35cd7e85ee1b00aed8cce9c9 (patch) | |
tree | a3aae397a5d0a44d79ae5242cc6dbef4a67854d0 | |
parent | fad2fec759cd845f3cdc3d3ceef287a2cbffd12a (diff) | |
download | aports-f2ebaf5b120a529c35cd7e85ee1b00aed8cce9c9.tar.bz2 aports-f2ebaf5b120a529c35cd7e85ee1b00aed8cce9c9.tar.xz |
testing/ipt-netflow: specify license
-rw-r--r-- | testing/ipt-netflow/APKBUILD | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/testing/ipt-netflow/APKBUILD b/testing/ipt-netflow/APKBUILD index 3c62b0284c..5dda63403b 100644 --- a/testing/ipt-netflow/APKBUILD +++ b/testing/ipt-netflow/APKBUILD @@ -1,20 +1,20 @@ # Contributor: Rush Future <rush.zlo@gmail.com> # Maintainer: Rush Future <rush.zlo@gmail.com> - pkgname=ipt-netflow pkgver=1.8.4 -pkgrel=0 +pkgrel=1 pkgdesc="Kernel netflow sensor" url="http://ipt-netflow.sourceforge.net." arch="all" -license="LGPL" +license="GPL3+" makedepends="iptables-dev bash" source="$pkgname-$pkgver.tar.gz::https://github.com/RushOnline/$pkgname/archive/v${pkgver}.tar.gz" _builddir="$srcdir/$pkgname-$pkgver" build() { cd "$_builddir" - ./configure + ./configure \ + || return 1 make libipt_NETFLOW.so || return 1 } |