wok view libsasl-without-ldap/receipt @ rev 13009

libsasl-without-ldap: Add support for db 5.x.
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Jun 06 18:31:58 2012 +0200 (2012-06-06)
parents 63aa805b30e0
children de49f29b101e
line source
1 # SliTaz package receipt.
3 PACKAGE="libsasl-without-ldap"
4 VERSION="2.1.23"
5 CATEGORY="system-tools"
6 SHORT_DESC="Cyrus Simple Authentication Service Layer (SASL) library."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 SOURCE="cyrus-sasl"
9 TARBALL="$SOURCE-$VERSION.tar.gz"
10 DEPENDS="db openssl"
11 BUILD_DEPENDS="db-dev openssl-dev"
12 WEB_SITE="http://cyrusimap.web.cmu.edu/"
13 WGET_URL="ftp://ftp.andrew.cmu.edu/pub/cyrus-mail/$TARBALL"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 patch -Np1 -i $stuff/0027_db5_support.patch
20 ./configure --prefix=/usr --infodir=/usr/share/info \
21 --without-pam --disable-anon \
22 --disable-cram --disable-digest \
23 --disable-gssapi --enable-login \
24 --disable-otp --enable-plain \
25 --mandir=/usr/share/man $CONFIGURE_ARGS &&
26 make -j1 &&
27 make -j1 DESTDIR=$PWD/_pkg install
28 }
31 # Rules to gen a SliTaz package suitable for Tazpkg.
32 genpkg_rules()
33 {
34 cp -a $_pkg/* $fs
35 }