wok-next annotate libsasl-without-ldap/receipt @ rev 20273

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