diff options
author | Francesco Colista <fcolista@alpinelinux.org> | 2017-06-16 07:41:27 +0000 |
---|---|---|
committer | Francesco Colista <fcolista@alpinelinux.org> | 2017-06-16 08:32:52 +0000 |
commit | aac3a16049adcd62137df684f1de94e785c5aaa4 (patch) | |
tree | 687d88dc4b8681af8cbec144eb1cc2de36fa2d8a /community | |
parent | c1e1c22d1561908d2559e8d91c3f989a5b051a3d (diff) | |
download | aports-aac3a16049adcd62137df684f1de94e785c5aaa4.tar.bz2 aports-aac3a16049adcd62137df684f1de94e785c5aaa4.tar.xz |
community/sngrep: upgrade to 1.4.3
Diffstat (limited to 'community')
-rw-r--r-- | community/sngrep/APKBUILD | 24 |
1 files changed, 9 insertions, 15 deletions
diff --git a/community/sngrep/APKBUILD b/community/sngrep/APKBUILD index c46b434ecb..518bbed124 100644 --- a/community/sngrep/APKBUILD +++ b/community/sngrep/APKBUILD @@ -8,34 +8,28 @@ url="https://github.com/irontec/sngrep" arch="all" license="GPL" depends="sed" -depends_dev="" -makedepends="$depends_dev autoconf automake ncurses-dev libpcap-dev pcre-dev libressl-dev" -install="" +makedepends="autoconf automake ncurses-dev libpcap-dev pcre-dev libressl-dev" subpackages="$pkgname-doc" source="$pkgname-$pkgver.zip::https://github.com/irontec/$pkgname/archive/v$pkgver.zip" -_builddir="$srcdir"/$pkgname-$pkgver -prepare() { - local i - cd "$_builddir" - for i in $source; do - case $i in - *.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;; - esac - done +builddir="$srcdir"/$pkgname-$pkgver + +check() { + cd "$builddir" + make check } build() { - cd "$_builddir" + cd "$builddir" ./bootstrap.sh ./configure --prefix=/usr \ --with-openssl \ --with-pcre \ --enable-ipv6 - make || return 1 + make } package() { - cd "$_builddir" + cd "$builddir" make DESTDIR="$pkgdir/" install } |