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

updated cowpatty again (4.6 -> 4.8)
author Hans-G?nter Theisgen
date Sun Feb 17 16:25:02 2019 +0100 (2019-02-17)
parents 3c5a4b2eb7cd
children 9bd5e01b7427
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 LICENSE="BSD"
9 SOURCE="cyrus-sasl"
10 TARBALL="$SOURCE-$VERSION.tar.gz"
11 WEB_SITE="http://cyrusimap.web.cmu.edu/"
12 WGET_URL="ftp://ftp.andrew.cmu.edu/pub/cyrus-mail/$TARBALL"
14 DEPENDS="db openssl"
15 BUILD_DEPENDS="db-dev openssl-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 cd $src
21 patch -Np1 -i $stuff/0027_db5_support.patch
22 ./configure --prefix=/usr --infodir=/usr/share/info \
23 --without-pam --disable-anon \
24 --disable-cram --disable-digest \
25 --disable-gssapi --enable-login \
26 --disable-otp --enable-plain \
27 --mandir=/usr/share/man $CONFIGURE_ARGS &&
28 make -j1 &&
29 make -j1 DESTDIR=$DESTDIR install
30 }
33 # Rules to gen a SliTaz package suitable for Tazpkg.
34 genpkg_rules()
35 {
36 cp -a $install/* $fs
37 }