diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2013-08-29 09:25:04 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2013-08-29 09:25:04 +0000 |
commit | cadff6713eee85ff9bf7aff246c388a7530b4f71 (patch) | |
tree | 1cf6e6723c5390f7e56ee0e9edcd8c0b0056555e | |
parent | f40b27c5decc66010571a3db7bb07c0ba1fa90f6 (diff) | |
download | aports-cadff6713eee85ff9bf7aff246c388a7530b4f71.tar.bz2 aports-cadff6713eee85ff9bf7aff246c388a7530b4f71.tar.xz |
testing/lua5.2-crypto: new aport
a Lua frontend to the OpenSSL cryptographic library
http://mkottman.github.io/luacrypto/
-rw-r--r-- | testing/lua5.2-crypto/APKBUILD | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/testing/lua5.2-crypto/APKBUILD b/testing/lua5.2-crypto/APKBUILD new file mode 100644 index 0000000000..6cdb4668ad --- /dev/null +++ b/testing/lua5.2-crypto/APKBUILD @@ -0,0 +1,38 @@ +# Maintainer: Natanael Copa <ncopa@alpinelinux.org> +_luaver=5.2 +pkgname=lua$_luaver-crypto +pkgver=0.3.2 +pkgrel=0 +pkgdesc="a Lua frontend to the OpenSSL cryptographic library" +url="http://mkottman.github.io/luacrypto/" +arch="all" +license="MIT/X11" +depends= +makedepends="lua$_luaver-dev openssl-dev" +install= +subpackages="$pkgname-dev $pkgname-doc" +source="luacrypto-$pkgver.tar.gz::https://github.com/mkottman/luacrypto/archive/$pkgver.tar.gz" + +_builddir="$srcdir"/luacrypto-$pkgver +build() { + cd "$_builddir" + LUA_CFLAGS="$(pkg-config lua$_luaver --cflags)" \ + LUA_LIBS="$(pkg-config lua$_luaver --libs)" \ + ./configure \ + --host=$CHOST \ + --build=$CBUILD \ + --prefix=/usr \ + || return 1 + make cryptodir=/usr/lib/lua/$_luaver || return 1 +} + +package() { + cd "$_builddir" + make install DESTDIR="$pkgdir" cryptodir=/usr/lib/lua/$_luaver \ + || return 1 + find "$pkgdir" -name '*.la' -delete +} + +md5sums="07271929beec760a42eff012803490a1 luacrypto-0.3.2.tar.gz" +sha256sums="63c5d7e2539779039114335b9a8f149d63382c4db298d69e70488a0108143bb4 luacrypto-0.3.2.tar.gz" +sha512sums="4cb20d2cc348a11f140210dffb803629034c72cc7232590f4488f559d5c7233e0c41e56fcd0863959ac0b07e64c9aa79ea573e4126fdc11bc3f1b3b49d13343e luacrypto-0.3.2.tar.gz" |