diff options
Diffstat (limited to 'main/lua5.1/APKBUILD')
-rw-r--r-- | main/lua5.1/APKBUILD | 27 |
1 files changed, 9 insertions, 18 deletions
diff --git a/main/lua5.1/APKBUILD b/main/lua5.1/APKBUILD index fed13853c9..3a30cfae7c 100644 --- a/main/lua5.1/APKBUILD +++ b/main/lua5.1/APKBUILD @@ -9,7 +9,6 @@ pkgdesc="A powerful light-weight programming language designed for extending app url="https://www.lua.org/" arch="all" license="MIT" -depends="" depends_dev="$pkgname" makedepends="libtool autoconf automake" subpackages="$pkgname-dev $pkgname-doc $pkgname-libs" @@ -21,15 +20,15 @@ source="https://www.lua.org/ftp/lua-$_pkgver.tar.gz builddir="$srcdir/lua-$_pkgver" prepare() { - default_prepare || return 1 + default_prepare cd "$builddir" # we want packages to find our things - sed -i -e 's:/usr/local:/usr:' etc/lua.pc + sed -i 's:/usr/local:/usr:' etc/lua.pc # correct lua versioning - sed -i -e 's/\(LIB_VERSION = \).*/\16:4:1/' src/Makefile + sed -i 's/\(LIB_VERSION = \).*/\16:4:1/' src/Makefile # we use libtool cat > configure.ac <<-EOF @@ -45,18 +44,18 @@ prepare() { build() { cd "$builddir" + ./configure \ --build=$CBUILD \ --host=$CHOST \ - --prefix=/usr \ - || return 1 + --prefix=/usr cd "$builddir"/src make CFLAGS=" -DLUA_USE_LINUX $CFLAGS" \ RPATH="/usr/lib" \ LIB_LIBS="-lpthread -lm -ldl" \ V=$pkgver \ - alpine_all || return 1 + alpine_all } package() { @@ -66,10 +65,10 @@ package() { INSTALL_TOP="$pkgdir/usr" \ INSTALL_INC="$pkgdir/usr/include" \ INSTALL_LIB="$pkgdir/usr/lib" \ - alpine_install || return 1 + alpine_install local i; for i in "$pkgdir"/usr/bin/*; do - mv $i ${i}$_majorver || return 1 + mv "$i" "$i"$_majorver done install -D -m 644 etc/lua.pc "$pkgdir"/usr/lib/pkgconfig/lua$_majorver.pc @@ -78,7 +77,7 @@ package() { } dev() { - default_dev || return 1 + default_dev replaces="lua-dev" } @@ -90,14 +89,6 @@ libs() { mv "$pkgdir"/usr/lib "$subpkgdir"/usr/ } -md5sums="2e115fe26e435e33b0d5c022e4490567 lua-5.1.5.tar.gz -7fa6ce1f09e18415f2ba00db437f2804 lua-5.1-make.patch -e60ef15deefb72a5930c498f1184aced lua-5.1-module_paths.patch -f2205b897edb31292a1f597a7fd638cb lua-5.1-readline.patch" -sha256sums="2640fc56a795f29d28ef15e13c34a47e223960b0240e8cb0a82d9b0738695333 lua-5.1.5.tar.gz -99a709038b0910edff3e40a2d368f35abe8eebbd699ee06aea4005de401ce843 lua-5.1-make.patch -1115b6aa00eb4e918156ae70c763534bd2f603ba888da75e4908c19c2ac3e5f7 lua-5.1-module_paths.patch -1f0f90eb8103e338f1188cc884c0c59cc6afd023828c11d86b8145b2a8d1efc2 lua-5.1-readline.patch" sha512sums="0142fefcbd13afcd9b201403592aa60620011cc8e8559d4d2db2f92739d18186860989f48caa45830ff4f99bfc7483287fd3ff3a16d4dec928e2767ce4d542a9 lua-5.1.5.tar.gz ec5945f9f73d87fceaaa2418f1dc5c0f1e2ab1392e3a110e9ca737bfd122a951543899cd9b6170771374c35de8dd106f7b51ba9885eae281241c79b47ee58370 lua-5.1-make.patch 123b115389d01d383af8698d2ed66c75bb7c3e2d33de57b8539ae56a9478930a0a72fa5657e78cc1c5b6bef00d07ec3a51e19ec0e419647e84eb158fb5c4795a lua-5.1-module_paths.patch |