diff options
author | Ted Trask <ttrask01@yahoo.com> | 2015-01-12 17:49:06 +0000 |
---|---|---|
committer | Ted Trask <ttrask01@yahoo.com> | 2015-01-12 17:49:06 +0000 |
commit | 385c2821adf18e6ea1ffba8c854a2a77e242c9d3 (patch) | |
tree | 2bd69011ddeb38ef81425790d58d76dfa2d2fa8d /main/lua-posix/APKBUILD | |
parent | 0df72bd54bd21761e87c9dce7cc0e5a583083441 (diff) | |
download | aports-385c2821adf18e6ea1ffba8c854a2a77e242c9d3.tar.bz2 aports-385c2821adf18e6ea1ffba8c854a2a77e242c9d3.tar.xz |
main/lua-posix: Change depends to include Lua 5.1 and 5.2 versions
Diffstat (limited to 'main/lua-posix/APKBUILD')
-rw-r--r-- | main/lua-posix/APKBUILD | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/main/lua-posix/APKBUILD b/main/lua-posix/APKBUILD index 6be6861959..701b6d0d51 100644 --- a/main/lua-posix/APKBUILD +++ b/main/lua-posix/APKBUILD @@ -5,16 +5,17 @@ _luaversions="5.1 5.2" pkgname=lua-posix _name=luaposix pkgver=32 -pkgrel=1 +pkgrel=2 pkgdesc="POSIX library for Lua $_luaver" url="https://github.com/luaposix/luaposix" arch="all" license="MIT" -depends="lua5.1-posix" +depends="" makedepends="perl ncurses-dev automake autoconf lua5.1-bitlib" subpackages="$pkgname-doc" for _i in $_luaversions; do + depends="$depends lua$_i-posix" makedepends="$makedepends lua$_i-dev" subpackages="$subpackages lua$_i-posix:_posix_${_i/./_} lua$_i-curses:_curses_${_i/./_}" |