diff options
author | Daniel Martà <mvdan@mvdan.cc> | 2013-03-03 20:08:26 +0100 |
---|---|---|
committer | Daniel Martà <mvdan@mvdan.cc> | 2013-03-03 20:08:26 +0100 |
commit | b8abfa5c393d7fd7150a4aed1fb1e65dee85666d (patch) | |
tree | 0f980a9b4bc10650d5a65c744a58b81f8f49f804 /pcr/lua-ldap | |
parent | e162d50b2e66f37b84040498a251c30fcb9c7f84 (diff) | |
parent | ab8deffc6f4cadc2e90e841ceb0aa48493693425 (diff) |
Merge http://projects.parabolagnulinux.org/abslibre
Diffstat (limited to 'pcr/lua-ldap')
-rw-r--r-- | pcr/lua-ldap/PKGBUILD | 28 | ||||
-rw-r--r-- | pcr/lua-ldap/lualdap-1.1.0-lua51.patch | 25 |
2 files changed, 53 insertions, 0 deletions
diff --git a/pcr/lua-ldap/PKGBUILD b/pcr/lua-ldap/PKGBUILD new file mode 100644 index 000000000..5443f20ab --- /dev/null +++ b/pcr/lua-ldap/PKGBUILD @@ -0,0 +1,28 @@ +pkgname=lua-ldap +_pkgname=lualdap +pkgver=1.1.0 +pkgrel=2 +pkgdesc="Simple interface from Lua to an LDAP client" +arch=('i686' 'x86_64' 'mips64el') +url="http://www.keplerproject.org/lualdap" +license=('BSD') +makedepends=('lua51' 'libldap') +source=(http://files.luaforge.net/releases/$_pkgname/$_pkgname/LuaLDAP$pkgver/$_pkgname-$pkgver.tar.gz + lualdap-1.1.0-lua51.patch) + +build() { + cd $srcdir/$_pkgname-$pkgver + patch -Np1 -i ${srcdir}/lualdap-1.1.0-lua51.patch + make LUA_INC=/usr/include/lua5.1 + +} + +package() { + cd $srcdir/$_pkgname-$pkgver + make LUA_LIBDIR=${pkgdir}/usr/lib/lua/5.1 \ + LUA_VERSION_NUM=510 \ + install +} + +md5sums=('5e104520c3f1333f38817a9fa1e76681' + 'a7583456b721584ef222d97e49823a81') diff --git a/pcr/lua-ldap/lualdap-1.1.0-lua51.patch b/pcr/lua-ldap/lualdap-1.1.0-lua51.patch new file mode 100644 index 000000000..07059ae08 --- /dev/null +++ b/pcr/lua-ldap/lualdap-1.1.0-lua51.patch @@ -0,0 +1,25 @@ +--- lualdap-1.1.0.orig/config 2006-07-23 20:42:06.000000000 -0500 ++++ lualdap-1.1.0/config 2013-02-17 16:00:45.947143554 -0500 +@@ -1,10 +1,10 @@ + # Installation directories + # System's libraries directory (where binary libraries are installed) +-LUA_LIBDIR= /usr/local/lib/lua/5.0 ++LUA_LIBDIR= /usr/lib/lua/5.1 + # Lua includes directory +-LUA_INC= /usr/local/include ++LUA_INC= /usr/include + # OpenLDAP includes directory +-OPENLDAP_INC= /usr/local/include ++OPENLDAP_INC= /usr/include + # OpenLDAP library (an optional directory can be specified with -L<dir>) + OPENLDAP_LIB= -lldap + +@@ -13,7 +13,7 @@ + #LIB_OPTION= -bundle -undefined dynamic_lookup #for MacOS X + + # Lua version number (first and second digits of target version) +-LUA_VERSION_NUM= 500 ++LUA_VERSION_NUM= 510 + LIBNAME= $T.so.$V + COMPAT_DIR= ../compat/src + |