[arch-commits] Commit in lua-luaossl/repos (2 files)

Daurnimator daurnimator at archlinux.org
Wed Jan 20 14:20:20 UTC 2021


    Date: Wednesday, January 20, 2021 @ 14:20:20
  Author: daurnimator
Revision: 823967

archrelease: copy trunk to community-x86_64

Added:
  lua-luaossl/repos/community-x86_64/
  lua-luaossl/repos/community-x86_64/PKGBUILD
    (from rev 823966, lua-luaossl/trunk/PKGBUILD)

----------+
 PKGBUILD |   50 ++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 50 insertions(+)

Copied: lua-luaossl/repos/community-x86_64/PKGBUILD (from rev 823966, lua-luaossl/trunk/PKGBUILD)
===================================================================
--- community-x86_64/PKGBUILD	                        (rev 0)
+++ community-x86_64/PKGBUILD	2021-01-20 14:20:20 UTC (rev 823967)
@@ -0,0 +1,50 @@
+# Maintainer: Daurnimator <daurnimator at archlinux.org>
+
+pkgname=(lua-luaossl lua51-luaossl lua52-luaossl lua53-luaossl)
+pkgver=20200709
+pkgrel=1
+pkgdesc='Most comprehensive OpenSSL module in the Lua universe'
+arch=('x86_64')
+url='http://25thandclement.com/~william/projects/luaossl.html'
+license=('MIT')
+makedepends=('lua' 'lua51' 'lua52' 'lua53')
+depends=('openssl')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/wahern/luaossl/archive/rel-$pkgver.tar.gz")
+sha256sums=('f3054e1ce26ca65ecaa7dcf193ea97d6a06933e4aa516779ebb89a6727d8a28f')
+
+build() {
+	cd "luaossl-rel-$pkgver"
+	make prefix=/usr
+}
+
+package_lua-luaossl() {
+	pkgdesc='Most comprehensive OpenSSL module in the Lua universe for Lua 5.4'
+
+	cd "luaossl-rel-$pkgver"
+	make DESTDIR="$pkgdir" prefix=/usr install5.4
+	install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+package_lua51-luaossl() {
+	pkgdesc='Most comprehensive OpenSSL module in the Lua universe for Lua 5.1'
+
+	cd "luaossl-rel-$pkgver"
+	make DESTDIR="$pkgdir" prefix=/usr install5.1
+	install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+package_lua52-luaossl() {
+	pkgdesc='Most comprehensive OpenSSL module in the Lua universe for Lua 5.2'
+
+	cd "luaossl-rel-$pkgver"
+	make DESTDIR="$pkgdir" prefix=/usr install5.2
+	install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+package_lua53-luaossl() {
+	pkgdesc='Most comprehensive OpenSSL module in the Lua universe for Lua 5.3'
+
+	cd "luaossl-rel-$pkgver"
+	make DESTDIR="$pkgdir" prefix=/usr install5.3
+	install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}



More information about the arch-commits mailing list