diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2009-01-27 12:50:53 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2009-01-27 12:50:53 +0000 |
commit | b1c08e60e047806554a40a57669287a7217f3246 (patch) | |
tree | 201c255fe65d254c259cf69ed6c50a387f735ed0 /extra/lpc | |
parent | b38d31d53c36500530d4e13d1cc6a193185e80e1 (diff) | |
download | aports-b1c08e60e047806554a40a57669287a7217f3246.tar.bz2 aports-b1c08e60e047806554a40a57669287a7217f3246.tar.xz |
extra/lpc: new aport
Lua Process Call
http://lua.net-core.org/sputnik.lua?p=Telesto:About
Diffstat (limited to 'extra/lpc')
-rw-r--r-- | extra/lpc/APKBUILD | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/extra/lpc/APKBUILD b/extra/lpc/APKBUILD new file mode 100644 index 0000000000..af2b8a089d --- /dev/null +++ b/extra/lpc/APKBUILD @@ -0,0 +1,18 @@ +# Maintainer: Natanael Copa <ncopa@alpinelinux.org> +pkgname=lpc +pkgver=1.0.0 +pkgrel=0 +pkgdesc="Lua Process Call" +url="http://lua.net-core.org/sputnik.lua?p=Telesto:About" +license="MIT/X11" +depends="uclibc lua-dev" +source="http://lua.net-core.org/dl/telesto/lpc-$pkgver.tar.gz" + +build() { + cd "$srcdir/$pkgname-$pkgver" + make CFLAGS="$CFLAGS" LDFLAGS="$LDFLAGS -shared" + # does not respect DESTDIR + make install PREFIX="$pkgdir"/usr +} + +md5sums="fce047808fbdfe3f9439557c7afae871 lpc-1.0.0.tar.gz" |