mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-05 16:52:06 +01:00
48 lines
1.0 KiB
Plaintext
48 lines
1.0 KiB
Plaintext
# Contributor: Natanael Copa <ncopa@alpinelinux.org>
|
|
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
|
pkgname=libuniso
|
|
pkgver=0.1
|
|
pkgrel=0
|
|
pkgdesc="Library to unpack files from CDROM (ISO-9660) images"
|
|
url="http://code.google.com/p/libuniso"
|
|
arch="all"
|
|
license="LGPLv2.1"
|
|
depends=""
|
|
depends_dev=""
|
|
makedepends="lua-dev"
|
|
install=""
|
|
subpackages="$pkgname-dev lua-uniso:_lua"
|
|
source="http://libuniso.googlecode.com/files/libuniso-$pkgver.tar.bz2"
|
|
|
|
_builddir="$srcdir"/libuniso-$pkgver
|
|
prepare() {
|
|
local i
|
|
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"
|
|
echo ENABLE_LUA=yes > config.mk
|
|
echo ENABLE_SHARED=yes >> config.mk
|
|
make || return 1
|
|
}
|
|
|
|
package() {
|
|
cd "$_builddir"
|
|
make DESTDIR="$pkgdir" install || return 1
|
|
rm -f "$pkgdir"/usr/lib/*.la
|
|
}
|
|
|
|
_lua() {
|
|
pkgdesc="Lua module for libuniso"
|
|
mkdir -p "$subpkgdir"/usr/lib
|
|
mv "$pkgdir"/usr/lib/lua "$subpkgdir"/usr/lib/
|
|
}
|
|
|
|
md5sums="9c1e65ceecce5786ff33c5dd82bea897 libuniso-0.1.tar.bz2"
|