wok-next view libsasl-without-ldap/receipt @ rev 20121

Up libsasl-without-ldap, cyrus-sasl-pam: (2.1.26)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Oct 31 09:01:11 2017 +0100 (2017-10-31)
parents de49f29b101e
children 1760c61b5ab6
line source
1 # SliTaz package receipt.
3 PACKAGE="libsasl-without-ldap"
4 VERSION="2.1.26"
5 CATEGORY="system-tools"
6 SHORT_DESC="Cyrus Simple Authentication Service Layer (SASL) library."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="BSD"
9 WEB_SITE="http://cyrusimap.web.cmu.edu/"
11 SOURCE="cyrus-sasl"
12 TARBALL="$SOURCE-$VERSION.tar.gz"
13 WGET_URL="ftp://ftp.cyrusimap.org/cyrus-sasl/$TARBALL"
15 DEPENDS="db openssl"
16 BUILD_DEPENDS="automake libtool db-dev openssl-dev"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 autoreconf -fi &&
23 ./configure \
24 --prefix=/usr \
25 --infodir=/usr/share/info \
26 --without-pam \
27 --disable-anon \
28 --disable-cram \
29 --disable-digest \
30 --disable-gssapi \
31 --enable-login \
32 --disable-otp \
33 --enable-plain \
34 --with-openssl \
35 --with-devrandom=/dev/urandom \
36 --mandir=/usr/share/man $CONFIGURE_ARGS &&
37 make -j1 &&
38 make -j1 DESTDIR=$DESTDIR install
39 }
42 # Rules to gen a SliTaz package suitable for Tazpkg.
43 genpkg_rules()
44 {
45 cp -a $install/* $fs
46 }