1ff8c48f1a
Removed config file (already included in openldap)
24 lines
583 B
Plaintext
24 lines
583 B
Plaintext
# Description: LDAP NSS module
|
|
# URL: http://www.padl.com/OSS/nss_ldap.html
|
|
# Maintainer: Alan Mizrahi, alan at mizrahi dot com dot ve
|
|
# Depends on: openldap
|
|
|
|
name=nss_ldap
|
|
version=265
|
|
release=1
|
|
source=(http://www.padl.com/download/$name-$version.tar.gz)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
./configure --mandir=/usr/man --with-ldap-lib=openldap --with-ldap-conf-file=/etc/openldap/ldap.conf
|
|
|
|
# padl developers have . in their PATH
|
|
PATH="$PATH:$PWD" make
|
|
|
|
mkdir -p $PKG/lib $PKG/usr/man
|
|
make DESTDIR=$PKG install
|
|
|
|
# Config file comes from openldap
|
|
rm -rf $PKG/etc/openldap
|
|
}
|