summaryrefslogtreecommitdiff
path: root/community/luasocket/PKGBUILD
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2013-07-19 01:10:32 -0700
committerroot <root@rshg054.dnsready.net>2013-07-19 01:10:32 -0700
commit8fbc0076a4827ddc6af92e0b9daa4c4c31450808 (patch)
tree03fd0e2921ebd53228d9a93e32ed3976b636cbea /community/luasocket/PKGBUILD
parente445a313723389ba9ee1fded025c567dae5b21ea (diff)
Fri Jul 19 01:09:18 PDT 2013
Diffstat (limited to 'community/luasocket/PKGBUILD')
-rw-r--r--community/luasocket/PKGBUILD50
1 files changed, 50 insertions, 0 deletions
diff --git a/community/luasocket/PKGBUILD b/community/luasocket/PKGBUILD
new file mode 100644
index 000000000..d659a6086
--- /dev/null
+++ b/community/luasocket/PKGBUILD
@@ -0,0 +1,50 @@
+# $Id: PKGBUILD 81274 2012-12-15 15:00:36Z seblu $
+# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
+# Contributor: Anders Bergh <anders1@gmail.com>
+
+pkgbase=luasocket
+pkgname=(lua51-socket)
+pkgver=2.0.2
+pkgrel=5
+pkgdesc='Networking support library for the Lua language'
+arch=('i686' 'x86_64')
+url='http://www.cs.princeton.edu/~diego/professional/luasocket/'
+license=('MIT')
+replaces=('luasocket')
+conflicts=('luasocket')
+makedepends=('lua' 'lua51')
+source=("http://luaforge.net/frs/download.php/2664/luasocket-$pkgver.tar.gz"
+ 'luasocket-unixsocket.patch')
+md5sums=('41445b138deb7bcfe97bff957503da8e'
+ '8d116bb70bd7a2fa15cbe949d4cfc35e')
+
+build() {
+# cp -a luasocket-$pkgver luasocket-$pkgver-52
+# msg2 'Building with lua 5.2'
+# pushd luasocket-$pkgver-52
+# patch -Np1 -i "$srcdir/luasocket-unixsocket.patch"
+# make
+# popd
+ msg2 'Building with lua 5.1'
+ cd luasocket-$pkgver
+ patch -Np1 -i "$srcdir/luasocket-unixsocket.patch"
+ make LUAINC=-I/usr/include/lua5.1
+}
+
+#package_lua-socket() {
+# depends=('lua')
+# cd luasocket-$pkgver-52
+# make DESTDIR="$pkgdir/" \
+# INSTALL_TOP_SHARE='$(DESTDIR)/usr/share/lua/5.2' \
+# INSTALL_TOP_LIB='$(DESTDIR)/usr/lib/lua/5.2' install
+# install -D -m0644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+#}
+
+package_lua51-socket() {
+ depends=('lua51')
+ cd luasocket-$pkgver
+ make DESTDIR="$pkgdir/" \
+ INSTALL_TOP_SHARE='$(DESTDIR)/usr/share/lua/5.1' \
+ INSTALL_TOP_LIB='$(DESTDIR)/usr/lib/lua/5.1' install
+ install -D -m0644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}