wok view cyrus-sasl-pam/receipt @ rev 2975

fix: typo firefox-dev
author Rohit Joshi <jozee@slitaz.org>
date Sun May 10 14:27:56 2009 +0000 (2009-05-10)
parents b1cb87e36ed4
children 8499519207e2
line source
1 # SliTaz package receipt.
3 PACKAGE="cyrus-sasl-pam"
4 VERSION="2.1.22"
5 CATEGORY="network"
6 SHORT_DESC="SASL authentication server using PAM."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 SOURCE="cyrus-sasl"
9 TARBALL="$SOURCE-$VERSION.tar.gz"
10 WEB_SITE="http://cyrusimap.web.cmu.edu/"
11 WGET_URL="ftp://ftp.andrew.cmu.edu/pub/cyrus-mail/$TARBALL"
12 DEPENDS="libldap openssl libdb pam"
13 BUILD_DEPENDS="openldap-dev pam pam-dev"
14 PROVIDE="cyrus-sasl:pam"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 ./configure --prefix=/usr --infodir=/usr/share/info \
21 --with-ldap=/usr --with-pam=/usr --with-devrandom=/dev/urandom \
22 --mandir=/usr/share/man $CONFIGURE_ARGS &&
23 make &&
24 make DESTDIR=$PWD/_pkg install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr/lib/sasl2 $fs/var/state/saslauthd
31 cp -a $_pkg/usr/sbin $fs/usr
32 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
33 cp -a $_pkg/usr/lib/sasl2/*.so* $fs/usr/lib/sasl2
34 cp -a ../$SOURCE/stuff/etc $fs
35 sed -i 's/shadow/pam/' $fs/etc/init.d/cyrus-sasl
36 }