opt/openldap/Pkgfile

48 lines
1.0 KiB
Plaintext
Raw Normal View History

2006-02-23 16:26:10 +01:00
# Description: Lightweight Directory Access Protocol (LDAP) Toolkit
2021-03-17 12:23:07 +01:00
# URL: https://www.openldap.org/
# Maintainer: CRUX System Team, core-ports at crux dot nu
# Depends on: cyrus-sasl libtool perl util-linux
2006-02-23 16:26:10 +01:00
name=openldap
2024-01-30 11:11:27 +01:00
version=2.6.7
release=1
2020-04-02 18:01:39 +02:00
source=(https://www.openldap.org/software/download/OpenLDAP/openldap-release/$name-$version.tgz
2022-03-16 15:24:04 +01:00
slapd)
2006-02-23 16:26:10 +01:00
2008-12-22 19:43:09 +01:00
build() {
2006-02-23 16:26:10 +01:00
cd $name-$version
2021-03-17 12:23:07 +01:00
./configure \
--prefix=/usr \
--sysconfdir=/etc \
--libexecdir=/usr/sbin \
--localstatedir=/var/openldap \
--enable-syslog \
--with-threads \
--with-tls \
--with-cyrus-sasl \
--enable-spasswd \
--enable-dynamic \
--enable-ipv6 \
--enable-modules \
--enable-crypt \
--enable-ldap \
--enable-meta \
--enable-dnssrv \
--enable-null \
--enable-perl \
2022-03-16 15:24:04 +01:00
--enable-dynacl \
--enable-aci \
--enable-shared
2006-02-23 16:26:10 +01:00
make depend
2006-02-23 16:26:10 +01:00
make
2020-04-02 18:01:39 +02:00
make DESTDIR=$PKG install
2006-02-23 16:26:10 +01:00
ln -sf liblber.so $PKG/usr/lib/liblber.so.2
ln -sf libldap.so $PKG/usr/lib/libldap.so.2
2006-02-23 16:26:10 +01:00
install -D -m 0755 $SRC/slapd $PKG/etc/rc.d/slapd
rm -f $PKG/etc/openldap/schema/README
2006-02-23 16:26:10 +01:00
}