diff options
author | coadde [Márcio Alexandre Silva Delgado] <coadde@parabola.nu> | 2014-08-27 05:07:26 -0300 |
---|---|---|
committer | coadde [Márcio Alexandre Silva Delgado] <coadde@parabola.nu> | 2014-08-27 05:07:26 -0300 |
commit | 0ff008e3c9dcc5ef088f481dfff3dcd121575598 (patch) | |
tree | d6f6cf5d6939e1f030a48d3711d3606570afd08f /social/lua-cyrussasl | |
parent | ed9d1c12bbfcf9cb8b3d53e886edb679df372640 (diff) |
move some packages from [social] to [pcr] and remove unused [social]
Diffstat (limited to 'social/lua-cyrussasl')
-rw-r--r-- | social/lua-cyrussasl/PKGBUILD | 34 | ||||
-rw-r--r-- | social/lua-cyrussasl/lua-cyrussasl.patch | 37 |
2 files changed, 0 insertions, 71 deletions
diff --git a/social/lua-cyrussasl/PKGBUILD b/social/lua-cyrussasl/PKGBUILD deleted file mode 100644 index 29fb472b2..000000000 --- a/social/lua-cyrussasl/PKGBUILD +++ /dev/null @@ -1,34 +0,0 @@ -# Maintainer (Arch): Dwayne Bent <dbb.1@liqd.org> - -pkgname=lua-cyrussasl -pkgver=1.0.0 -pkgrel=1 -pkgdesc="Lua bindings for Cyrus SASL library." -arch=('i686' 'x86_64' 'mips64el') -url="http://github.com/JorjBauer/lua-cyrussasl" -license=('BSD') -depends=('lua>=5.1' 'libsasl') -source=( - "lua-cyrussasl-$pkgver.tar.gz::https://github.com/JorjBauer/lua-cyrussasl/tarball/v$pkgver" - "lua-cyrussasl.patch" -) -md5sums=('40c94c06441e1e47640d81b125742969' - '5b5c15e4cba63d05a5bfd1cc3ddcba0f') - -build() { - cd $srcdir/*-lua-cyrussasl-* - - patch -p1 < "$srcdir/lua-cyrussasl.patch" - make -} - -package() { - mkdir -p "$pkgdir/usr/lib/lua/5.1" - mkdir -p "$pkgdir/usr/share/licenses/lua-cyrussasl" - - cd $srcdir/*-lua-cyrussasl-* - - make DESTDIR=${pkgdir} install - install -m644 "LICENSE" "$pkgdir/usr/share/licenses/lua-cyrussasl/LICENSE" -} - diff --git a/social/lua-cyrussasl/lua-cyrussasl.patch b/social/lua-cyrussasl/lua-cyrussasl.patch deleted file mode 100644 index 5309e5af1..000000000 --- a/social/lua-cyrussasl/lua-cyrussasl.patch +++ /dev/null @@ -1,37 +0,0 @@ -diff --git a/Makefile b/Makefile -index 9c696ab..37057da 100644 ---- a/Makefile -+++ b/Makefile -@@ -4,12 +4,18 @@ - #LUAPATH=/usr/share/lua/5.1 - #CPATH=/usr/lib/lua/5.1 - -+# Linux (Arch Linux) -+CFLAGS=-g -O2 -fpic -I/usr/include -+LDFLAGS=-O -shared -fpic -lsasl2 -+LUAPATH=/usr/share/lua/5.1 -+CPATH=/usr/lib/lua/5.1 -+ - # MacOS --CFLAGS=-g -Wall -O2 --LDFLAGS=-bundle -undefined dynamic_lookup -lsasl2 --MACOSX_VERSION=10.5 --LUAPATH=/usr/local/share/lua/5.1 --CPATH=/usr/local/lib/lua/5.1 -+#CFLAGS=-g -Wall -O2 -+#LDFLAGS=-bundle -undefined dynamic_lookup -lsasl2 -+#MACOSX_VERSION=10.5 -+#LUAPATH=/usr/local/share/lua/5.1 -+#CPATH=/usr/local/lib/lua/5.1 - - ######################################################### - # -@@ -26,7 +32,7 @@ OBJS=cyrussasl.o luaabstract.o context.o - all: $(TARGET) - - install: $(TARGET) -- cp $(TARGET) $(CPATH) -+ cp $(TARGET) $(DESTDIR)$(CPATH) - - clean: - rm -f *.o *.so *~ |