blob: 2396313e09ee1a1cbb7c47f8e43f751ff0081752 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
# $Id: PKGBUILD 74902 2012-08-09 08:08:00Z bluewind $
# Maintainer:
# Contributor: Judd Vinet <jvinet@zeroflux.org>
_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"
}
|