diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2017-11-22 11:50:05 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2017-11-22 11:50:05 +0000 |
commit | 64f9a6be93976aad3015522b3d5bcc0aa2ba4072 (patch) | |
tree | 862398ffc66dfb51038f69f3fa79c11821fb9160 /community/lua-brieflz | |
parent | 2f1f46ec0d063883046543fa8bc0e36ce34ce6e2 (diff) | |
download | aports-64f9a6be93976aad3015522b3d5bcc0aa2ba4072.tar.bz2 aports-64f9a6be93976aad3015522b3d5bcc0aa2ba4072.tar.xz |
community/lua-brieflz: add explicit versioned lua-busted checkdepends
don't rely on the install_if
Diffstat (limited to 'community/lua-brieflz')
-rw-r--r-- | community/lua-brieflz/APKBUILD | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/community/lua-brieflz/APKBUILD b/community/lua-brieflz/APKBUILD index 7583bdbaac..be847540a4 100644 --- a/community/lua-brieflz/APKBUILD +++ b/community/lua-brieflz/APKBUILD @@ -3,7 +3,7 @@ pkgname=lua-brieflz _pkgname=brieflz.lua pkgver=0.1.2 -pkgrel=0 +pkgrel=1 pkgdesc="Lua binding for BriefLZ compression library" url="https://github.com/jirutka/brieflz.lua" arch="all" @@ -24,6 +24,7 @@ _luaversions="5.1 5.2 5.3" for _v in $_luaversions; do makedepends="$makedepends lua$_v-dev luarocks$_v" subpackages="$subpackages lua$_v-${pkgname#lua-}:_subpackage" + checkdepends="$checkdepends lua$_v-busted" done build() { |