diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2011-02-25 10:17:50 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2011-02-25 10:17:50 +0000 |
commit | 2330f981446b9c5d0be60e509c7ed4371cb12e34 (patch) | |
tree | 9b156b4bf75dba16a003017519da03294110ca56 /main/lua-nixio | |
parent | 06fb4448a02d163391db23b5333396a858767fb0 (diff) | |
download | aports-2330f981446b9c5d0be60e509c7ed4371cb12e34.tar.bz2 aports-2330f981446b9c5d0be60e509c7ed4371cb12e34.tar.xz |
main/lua-nixio: removed. seems to have disapeared upstream
Diffstat (limited to 'main/lua-nixio')
-rw-r--r-- | main/lua-nixio/APKBUILD | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/main/lua-nixio/APKBUILD b/main/lua-nixio/APKBUILD deleted file mode 100644 index 8a6a297c40..0000000000 --- a/main/lua-nixio/APKBUILD +++ /dev/null @@ -1,35 +0,0 @@ -# Maintainer: Natanael Copa <ncopa@alpinelinux.org> -pkgname=lua-nixio -_name=nixio -pkgver=0.3 -pkgrel=2 -pkgdesc="General POSIX IO library for Lua" -url="http://dev.luci.freifunk-halle.net/nixio/doc/" -arch="all" -license="Apache" -makedepends="lua-dev openssl-dev" -depends="lua" -source="http://dev.luci.freifunk-halle.net/nixio/nixio-0.3.tar.bz2" - -_builddir="$srcdir"/$_name-$pkgver -build() { - cd "$_builddir" - make LUA_MODULEDIR="$pkgdir"/usr/share/lua/5.1 \ - LUA_LIBRARYDIR="$pkgdir"/usr/lib/lua/5.1 \ - CFLAGS="$CFLAGS" -} - -package() { - cd "$_builddir" - install -d "$pkgdir"/usr/share/lua/5.1 \ - "$pkgdir"/usr/lib/lua/5.1 - # The makefiles put the LDFLAGS to early, we trick them to the end - # by override LINK and NIXIO_LDFLAGS_POST - make LUA_MODULEDIR="$pkgdir"/usr/share/lua/5.1 \ - LUA_LIBRARYDIR="$pkgdir"/usr/lib/lua/5.1 \ - LINK="$CC" \ - NIXIO_LDFLAGS_POST="-lcrypto $LDFLAGS" \ - install -} - -md5sums="7fa6a989cd2644347d969cb6e3a5c186 nixio-0.3.tar.bz2" |