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

updated radvd (2.12 -> 2.18)
author Hans-G?nter Theisgen
date Fri Sep 13 15:28:12 2019 +0100 (2019-09-13)
parents de49f29b101e
children a1821e12e28a
line source
1 # SliTaz package receipt.
3 PACKAGE="libsasl-without-ldap"
4 VERSION="2.1.27"
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="https://cyrusimap.org/sasl/"
11 SOURCE="cyrus-sasl"
12 TARBALL="$SOURCE-$VERSION.tar.gz"
13 WGET_URL="http://cyrusimap.org/releases/$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 # patch -Np1 -i $stuff/0027_db5_support.patch
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 --mandir=/usr/share/man \
35 $CONFIGURE_ARGS &&
36 make -j1 &&
37 make -j1 DESTDIR=$DESTDIR install
38 }
41 # Rules to gen a SliTaz package suitable for Tazpkg.
42 genpkg_rules()
43 {
44 cp -a $install/* $fs
45 }