diff options
author | Jakub Jirutka <jakub@jirutka.cz> | 2018-01-01 21:37:40 +0100 |
---|---|---|
committer | Jakub Jirutka <jakub@jirutka.cz> | 2018-01-01 21:37:40 +0100 |
commit | 29c76ea6287935850536aaac0168800794059c2e (patch) | |
tree | 4685d487c868718bf0e5fb8251e7b0a598e93718 | |
parent | 57c0127ab99dff84688ffd4df60086a01b77d91a (diff) | |
download | aports-29c76ea6287935850536aaac0168800794059c2e.tar.bz2 aports-29c76ea6287935850536aaac0168800794059c2e.tar.xz |
community/lua-fun: fix $provides
-rw-r--r-- | community/lua-fun/APKBUILD | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/community/lua-fun/APKBUILD b/community/lua-fun/APKBUILD index 07d2b2e6ca..97a07d9223 100644 --- a/community/lua-fun/APKBUILD +++ b/community/lua-fun/APKBUILD @@ -4,13 +4,14 @@ pkgname=lua-fun _rockname=fun _pkgname=luafun pkgver=0.1.3 -pkgrel=8 +pkgrel=9 pkgdesc="Functional programming library" url="https://rtsisyk.github.io/luafun/" arch="noarch" license="MIT" depends="lua" checkdepends="" +provides="" source="$pkgname-$pkgver.tar.gz::https://github.com/rtsisyk/$_pkgname/archive/$pkgver.tar.gz" builddir="$srcdir/$_pkgname-$pkgver" @@ -23,7 +24,7 @@ esac _luaversions="5.1 5.2 5.3" for _v in $_luaversions; do checkdepends="$checkdepends lua$_v" - provides="lua$_v-${pkgname#lua-}=$pkgver-r$pkgrel" # for backward compatibility + provides="$provides lua$_v-${pkgname#lua-}=$pkgver-r$pkgrel" # for backward compatibility done check() { |