diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2009-01-19 21:13:24 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2009-01-19 21:13:24 +0000 |
commit | c26d0e847cea6ffec6154067a68d6343afd2c66f (patch) | |
tree | c986144d83f4311a926687c439fc6f8f85dd28f3 /extra/luaposix/APKBUILD | |
parent | 163382dc4648b8afe52e030a7f41ea4864f49d3f (diff) | |
download | aports-c26d0e847cea6ffec6154067a68d6343afd2c66f.tar.bz2 aports-c26d0e847cea6ffec6154067a68d6343afd2c66f.tar.xz |
extra/luaposix: new aport
Diffstat (limited to 'extra/luaposix/APKBUILD')
-rw-r--r-- | extra/luaposix/APKBUILD | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/extra/luaposix/APKBUILD b/extra/luaposix/APKBUILD new file mode 100644 index 000000000..7b85aeafd --- /dev/null +++ b/extra/luaposix/APKBUILD @@ -0,0 +1,18 @@ +# Maintainer: Natanael Copa <ncopa@alpinelinux.org> +pkgname=luaposix +pkgver=5.1.4 +pkgrel=0 +pkgdesc="POSIX library for Lua" +url="http://luaforge.net/projects/luaposix/" +license="MIT" +depends="uclibc" +makedepends="lua-dev" +source="http://luaforge.net/frs/download.php/3572/$pkgname-$pkgver.tar.gz" + +build() { + cd "$srcdir/$pkgname-$pkgver" + make PREFIX=/usr || return 1 + make PREFIX=/usr DESTDIR="$pkgdir" install +} + +md5sums="073019b1a52bfddb94e2521553b47ef5 luaposix-5.1.4.tar.gz" |