diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2011-11-25 12:54:09 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2011-11-25 12:54:09 +0000 |
commit | 80021059ddb021fb7907772d9ccf982187b8f52e (patch) | |
tree | 7ea2ba1fc82d88b435a6117f50cd2f6d59cb0c39 | |
parent | fdaeaeae0c3e0baacbcd010f170e47ca4bc0881a (diff) | |
download | aports-80021059ddb021fb7907772d9ccf982187b8f52e.tar.bz2 aports-80021059ddb021fb7907772d9ccf982187b8f52e.tar.xz |
testing/libuniso: new aport
Library to unpack files from CDROM (ISO-9660) images
http://code.google.com/p/libuniso
-rw-r--r-- | testing/libuniso/APKBUILD | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/testing/libuniso/APKBUILD b/testing/libuniso/APKBUILD new file mode 100644 index 000000000..eb5de7b72 --- /dev/null +++ b/testing/libuniso/APKBUILD @@ -0,0 +1,47 @@ +# 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" |