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

libsasl-without-ldap, cyrus-sasl-pam: remove autoconf
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Oct 31 09:09:26 2017 +0100 (2017-10-31)
parents 76b93e8c1608
children
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="db-dev openssl-dev"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 ./configure \
22 --prefix=/usr \
23 --infodir=/usr/share/info \
24 --without-pam \
25 --disable-anon \
26 --disable-cram \
27 --disable-digest \
28 --disable-gssapi \
29 --enable-login \
30 --disable-otp \
31 --enable-plain \
32 --with-openssl \
33 --with-devrandom=/dev/urandom \
34 --mandir=/usr/share/man $CONFIGURE_ARGS &&
35 make -j1 &&
36 make -j1 DESTDIR=$DESTDIR install
37 }
40 # Rules to gen a SliTaz package suitable for Tazpkg.
41 genpkg_rules()
42 {
43 cp -a $install/* $fs
44 }