diff options
Diffstat (limited to 'main/luaposix/APKBUILD')
-rw-r--r-- | main/luaposix/APKBUILD | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/main/luaposix/APKBUILD b/main/luaposix/APKBUILD new file mode 100644 index 0000000000..7b85aeafdf --- /dev/null +++ b/main/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" |