diff options
author | Michael Zuo <muh.muhten@gmail.com> | 2016-02-29 23:56:23 -0500 |
---|---|---|
committer | Timo Teräs <timo.teras@iki.fi> | 2016-03-01 06:20:43 +0000 |
commit | aabc2e9dcd5a60a938455800c79d3f50c4a01a68 (patch) | |
tree | d571fab28ded42e94b41c82afa6f194321a1696d /testing/luarocks | |
parent | 620154dba93f56842c25ababc6206421f70982b8 (diff) | |
download | aports-aabc2e9dcd5a60a938455800c79d3f50c4a01a68.tar.bz2 aports-aabc2e9dcd5a60a938455800c79d3f50c4a01a68.tar.xz |
testing/luarocks: add dependency on curl and fix license
luarocks aborts incomprehensibly if it can't find curl in the PATH when
trying to download anything.
License text is the MIT license text verbatim, and the README documents
"LuaRocks is free software and uses the same license as Lua 5.x."
Diffstat (limited to 'testing/luarocks')
-rw-r--r-- | testing/luarocks/APKBUILD | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/testing/luarocks/APKBUILD b/testing/luarocks/APKBUILD index 819060566a..9c0dce357e 100644 --- a/testing/luarocks/APKBUILD +++ b/testing/luarocks/APKBUILD @@ -3,12 +3,12 @@ pkgname=luarocks pkgver=2.3.0 _lua_versions="5.1 5.2 5.3" -pkgrel=0 +pkgrel=1 pkgdesc="Deployment and management system for Lua modules" url="http://www.luarocks.org/" arch="noarch" -license="custom" -depends="" +license="MIT" +depends="curl" depends_dev="" makedepends="$depends_dev" install="" |