diff options
author | Sören Tempel <soeren+git@soeren-tempel.net> | 2017-08-26 01:43:09 +0200 |
---|---|---|
committer | Sören Tempel <soeren+git@soeren-tempel.net> | 2017-08-26 01:44:18 +0200 |
commit | ae1f4c098467a4071d568bb0268eef3b4a617f88 (patch) | |
tree | f527d42a1b9b1ae3145d82a78a174d6e231cf130 /main/lz4 | |
parent | 61f844af270f2da263a413e293d0030857f3c3e1 (diff) | |
download | aports-ae1f4c098467a4071d568bb0268eef3b4a617f88.tar.bz2 aports-ae1f4c098467a4071d568bb0268eef3b4a617f88.tar.xz |
main/lz4: fix typo in subpackage
With two colons 'tests' seems to be interpreted as an architecture name,
use a singe colon to specify a function name.
Diffstat (limited to 'main/lz4')
-rw-r--r-- | main/lz4/APKBUILD | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/main/lz4/APKBUILD b/main/lz4/APKBUILD index 682c2b8124..a4ee104f4a 100644 --- a/main/lz4/APKBUILD +++ b/main/lz4/APKBUILD @@ -2,13 +2,14 @@ # Maintainer: Stuart Cardall <developer@it-offshore.co.uk> pkgname=lz4 pkgver=1.8.0 -pkgrel=0 +pkgrel=1 pkgdesc="LZ4 is lossless compression algorithm with fast decoder @ multiple GB/s per core." url="https://github.com/lz4/lz4" arch="all" license="BSD" +options="!check" checkdepends="diffutils" -subpackages="$pkgname-dev $pkgname-doc $pkgname-libs $pkgname-tests::tests" +subpackages="$pkgname-dev $pkgname-doc $pkgname-libs $pkgname-tests:tests" source="$pkgname-$pkgver.tar.gz::https://github.com/lz4/lz4/archive/v$pkgver.tar.gz parallel-tests.patch fix-man-dir.patch |