mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-03-06 14:12:23 +01:00
63 lines
1.7 KiB
Plaintext
63 lines
1.7 KiB
Plaintext
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
|
_luaversions="5.1 5.2 5.3"
|
|
pkgname=lua-iconv
|
|
pkgver=7
|
|
pkgrel=1
|
|
pkgdesc="Lua binding to the POSIX 'iconv' library"
|
|
url="http://ittner.github.io/lua-iconv/"
|
|
arch="all"
|
|
license="MIT"
|
|
depends=
|
|
makedepends=""
|
|
for _i in $_luaversions; do
|
|
makedepends="$makedepends lua$_i-dev"
|
|
subpackages="$subpackages lua$_i-iconv:split_${_i/./_}"
|
|
done
|
|
install=
|
|
source="https://github.com/downloads/ittner/lua-iconv/lua-iconv-$pkgver.tar.gz
|
|
0001-lua-iconv-make-close-available-from-lua.patch"
|
|
|
|
_builddir="$srcdir"/$pkgname-$pkgver
|
|
prepare() {
|
|
cd "$_builddir"
|
|
patch -p1 -i "$srcdir"/0001-lua-iconv-make-close-available-from-lua.patch
|
|
cd "$srcdir"
|
|
for _i in $_luaversions; do
|
|
cp -r $_builddir $_i || return 1
|
|
done
|
|
}
|
|
|
|
build() {
|
|
for _i in $_luaversions; do
|
|
msg "Build for Lua $_i"
|
|
cd "$srcdir"/$_i
|
|
make LUAPKG="lua$_i" \
|
|
CFLAGS="$CFLAGS $(pkg-config lua$_i --cflags)" \
|
|
|| return 1
|
|
done
|
|
}
|
|
|
|
package() {
|
|
cd "$srcdir"
|
|
for _i in $_luaversions; do
|
|
install -D -s $_i/iconv.so "$pkgdir"/usr/lib/lua/$_i/iconv.so \
|
|
|| return 1
|
|
done
|
|
}
|
|
|
|
_split() {
|
|
local d=usr/lib/lua _ver=$1
|
|
pkgdesc="$pkgdesc for Lua $_ver"
|
|
install_if="lua$_ver $pkgname=$pkgver-r$pkgrel"
|
|
depends=
|
|
mkdir -p "$subpkgdir/$d" || return 1
|
|
mv "$pkgdir/$d/$1" "$subpkgdir/$d"
|
|
}
|
|
|
|
for _v in $_luaversions; do
|
|
eval "split_${_v/./_}() { _split $_v; }"
|
|
done
|
|
|
|
sha512sums="03b537ba6050ca8e59e6a62474e837c0d6463d1da4610e6da820afc573659571f75de0c7507792e8b7348fd91623d7af7050ead18bd09ec0c7b89a742e024a57 lua-iconv-7.tar.gz
|
|
472e6611638d57c6c99fcfe53defa9766d89c45f6eec5fb4dd31bd63a119901a99fa2219d38d66644d00c0fcfd006418ccb3ee5c0496f2397d3d76d05ae0cee9 0001-lua-iconv-make-close-available-from-lua.patch"
|