wok view nss-ldapd/receipt @ rev 20257

Add giflossy
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Mar 13 23:27:32 2018 +0100 (2018-03-13)
parents 178ea3fcbac8
children 8dd8bab3f0ca
line source
1 # SliTaz package receipt.
3 PACKAGE="nss-ldapd"
4 VERSION="0.7.15"
5 CATEGORY="system-tools"
6 SHORT_DESC="NSS module for name lookups using LDAP (nss_ldap remplacement)."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="LGPL2.1"
9 SOURCE="nss-pam-ldapd"
10 TARBALL="$SOURCE-$VERSION.tar.gz"
11 WEB_SITE="http://ch.tudelft.nl/~arthur/nss-ldapd/"
12 WGET_URL="http://arthurdejong.org/$SOURCE/$TARBALL"
14 DEPENDS="cyrus-sasl krb5 libkrb5 libldap libssl libcomerr3"
15 BUILD_DEPENDS="cyrus-sasl-dev krb5-dev openldap-dev openssl-dev pam-dev \
16 pam_ldap"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 mkdir -p $DESTDIR/usr/lib $DESTDIR/etc $DESTDIR/usr/lib/security
22 sed -i 's/-D / /' */Makefile.in Makefile.in
23 ./configure --prefix=/usr --infodir=/usr/share/info \
24 --mandir=/usr/share/man $CONFIGURE_ARGS &&
25 make &&
26 make DESTDIR=$DESTDIR install
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 mkdir -p $fs/usr
33 cp -a $install/etc $fs
34 cp -a $install/usr/sbin $fs/usr
35 cp -a $install/usr/lib $fs/usr
36 }