wok annotate libsasl-without-ldap/receipt @ rev 21692

simple-mtpfs: update bdeps
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Jun 04 11:06:20 2019 +0200 (2019-06-04)
parents de49f29b101e
children a1821e12e28a
rev   line source
gokhlayeh@8165 1 # SliTaz package receipt.
gokhlayeh@8165 2
gokhlayeh@8165 3 PACKAGE="libsasl-without-ldap"
Hans-G?nter@21286 4 VERSION="2.1.27"
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"
Hans-G?nter@21286 9 WEB_SITE="https://cyrusimap.org/sasl/"
Hans-G?nter@21286 10
gokhlayeh@8165 11 SOURCE="cyrus-sasl"
gokhlayeh@8165 12 TARBALL="$SOURCE-$VERSION.tar.gz"
Hans-G?nter@21286 13 WGET_URL="http://cyrusimap.org/releases/$TARBALL"
pascal@15600 14
gokhlayeh@8165 15 DEPENDS="db openssl"
gokhlayeh@8165 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 {
Hans-G?nter@21286 21 # patch -Np1 -i $stuff/0027_db5_support.patch
Hans-G?nter@21286 22
Hans-G?nter@21286 23 ./configure \
Hans-G?nter@21286 24 --prefix=/usr \
Hans-G?nter@21286 25 --infodir=/usr/share/info \
Hans-G?nter@21286 26 --without-pam \
Hans-G?nter@21286 27 --disable-anon \
Hans-G?nter@21286 28 --disable-cram \
Hans-G?nter@21286 29 --disable-digest \
Hans-G?nter@21286 30 --disable-gssapi \
Hans-G?nter@21286 31 --enable-login \
Hans-G?nter@21286 32 --disable-otp \
Hans-G?nter@21286 33 --enable-plain \
Hans-G?nter@21286 34 --mandir=/usr/share/man \
Hans-G?nter@21286 35 $CONFIGURE_ARGS &&
slaxemulator@8682 36 make -j1 &&
pascal@15600 37 make -j1 DESTDIR=$DESTDIR install
gokhlayeh@8165 38 }
gokhlayeh@8165 39
gokhlayeh@8165 40
gokhlayeh@8165 41 # Rules to gen a SliTaz package suitable for Tazpkg.
gokhlayeh@8165 42 genpkg_rules()
gokhlayeh@8165 43 {
pascal@15600 44 cp -a $install/* $fs
Hans-G?nter@21286 45 }