# $Id: PKGBUILD 74902 2012-08-09 08:08:00Z bluewind $ # Maintainer: # Contributor: Judd Vinet _pkgbasename=libldap pkgname=lib32-$_pkgbasename pkgver=2.4.32 pkgrel=1 pkgdesc="Lightweight Directory Access Protocol (LDAP) client libraries (32-bit)" arch=('x86_64') license=('custom') url="http://www.openldap.org/" depends=('lib32-openssl' $_pkgbasename) makedepends=(gcc-multilib) options=('!libtool') source=("ftp://ftp.openldap.org/pub/OpenLDAP/openldap-release/openldap-${pkgver}.tgz" 'ntlm.patch') md5sums=('6a3e85cf61860ca5e8a1eba6753dd9d0' '4258ddbef923d1f29f2843bc050f8c56') build() { export CC="gcc -m32" export CXX="g++ -m32" export PKG_CONFIG_PATH="/usr/lib32/pkgconfig" cd ${srcdir}/openldap-${pkgver} patch -Np1 -i ${srcdir}/ntlm.patch ./configure --prefix=/usr \ --libexecdir=/usr/sbin \ --sysconfdir=/etc \ --mandir=/usr/share/man \ --localstatedir=/var/lib/openldap \ --enable-crypt --enable-dynamic \ --with-threads --disable-wrappers \ --disable-spasswd --without-cyrus-sasl \ --disable-bdb --disable-hdb --libdir=/usr/lib32 cd include make cd ../libraries make depend make } package() { cd ${srcdir}/openldap-${pkgver} cd include make DESTDIR=${pkgdir} install cd ../libraries make DESTDIR=${pkgdir} install rm -rf "${pkgdir}"/usr/{include,share,bin} "$pkgdir/etc" mkdir -p "$pkgdir/usr/share/licenses" ln -s $_pkgbasename "$pkgdir/usr/share/licenses/$pkgname" }