diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2013-03-05 13:23:30 +0100 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2013-03-05 16:49:04 +0100 |
commit | f86bc1f714dba602505312ca08e1a5139f2e014a (patch) | |
tree | 62dec626f94cb93bf1b8616f2c5f179bb59e72c6 /main/lua-posix/APKBUILD | |
parent | 5922ff1669d75f7ce66b82a13bf54f448e27ce74 (diff) | |
download | aports-f86bc1f714dba602505312ca08e1a5139f2e014a.tar.bz2 aports-f86bc1f714dba602505312ca08e1a5139f2e014a.tar.xz |
main/lua-posix: fix 5.1 incompat issue
Diffstat (limited to 'main/lua-posix/APKBUILD')
-rw-r--r-- | main/lua-posix/APKBUILD | 22 |
1 files changed, 17 insertions, 5 deletions
diff --git a/main/lua-posix/APKBUILD b/main/lua-posix/APKBUILD index 6bd66bde49..1dd8bcdb74 100644 --- a/main/lua-posix/APKBUILD +++ b/main/lua-posix/APKBUILD @@ -2,14 +2,15 @@ pkgname=lua-posix _name=luaposix pkgver=5.1.26 -pkgrel=0 +pkgrel=1 pkgdesc="POSIX library for Lua" url="https://github.com/luaposix/luaposix" arch="all" license="MIT" depends="lua lua-bitlib" makedepends="lua-dev perl ncurses-dev" -source="luaposix-$pkgver.tar.gz::https://github.com/luaposix/luaposix/archive/release-v$pkgver.tar.gz" +source="luaposix-$pkgver.tar.gz::https://github.com/luaposix/luaposix/archive/release-v$pkgver.tar.gz + 0001-Removed-Lua-5.2-functions-lua_len-and-lua_tointegerx.patch" replaces="luaposix" subpackages="lua-curses $pkgname-doc" @@ -18,6 +19,14 @@ _builddir="$srcdir"/$_name-release-v$pkgver _lualib=/usr/lib/lua/5.1 _luashare=/usr/share/lua/5.1 +prepare() { + cd "$_builddir" + for i in $source; do + case $i in + *.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;; + esac + done +} build() { cd "$_builddir" ./configure --prefix=/usr \ @@ -40,6 +49,9 @@ curses() { mv "$pkgdir"/$_lualib/curses* "$subpkgdir"/$_lualib/ || return 1 mv "$pkgdir"/$_luashare/curses* "$subpkgdir"/$_luashare/ || return 1 } -md5sums="26018f1e581e24d2875e848a77d03139 luaposix-5.1.26.tar.gz" -sha256sums="8de25b0013cc97ccf5ccd8b23012a548fb8ed682d8d95c849c3798bdfbda9866 luaposix-5.1.26.tar.gz" -sha512sums="48e8a7ab8752d0a87326226813c1feb4f76596c568eb657777c8861837fd036835107c1ef7125d9512d42326ce560249057a791e99c36e29228fae665443fb59 luaposix-5.1.26.tar.gz" +md5sums="26018f1e581e24d2875e848a77d03139 luaposix-5.1.26.tar.gz +2af13134ae7e936e74f6f1f2f011a3ba 0001-Removed-Lua-5.2-functions-lua_len-and-lua_tointegerx.patch" +sha256sums="8de25b0013cc97ccf5ccd8b23012a548fb8ed682d8d95c849c3798bdfbda9866 luaposix-5.1.26.tar.gz +256504f015850b3126a53d40d6210b8d6f473bc3c180b74621c62709d3db594d 0001-Removed-Lua-5.2-functions-lua_len-and-lua_tointegerx.patch" +sha512sums="48e8a7ab8752d0a87326226813c1feb4f76596c568eb657777c8861837fd036835107c1ef7125d9512d42326ce560249057a791e99c36e29228fae665443fb59 luaposix-5.1.26.tar.gz +b460d42e39c790ca4dd44b16923a9a44267a2b2088995eed9cdbfc9b852d9beb30f96a30cceddd6bbe32e2ed2cc806515e8d9e9fb7a3d877043a65f1f1f2394e 0001-Removed-Lua-5.2-functions-lua_len-and-lua_tointegerx.patch" |