wok-next annotate 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 |
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@20121 | 16 BUILD_DEPENDS="automake libtool 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 autoreconf -fi && |
pascal@20121 | 22 |
pascal@20121 | 23 ./configure \ |
pascal@20121 | 24 --prefix=/usr \ |
pascal@20121 | 25 --infodir=/usr/share/info \ |
pascal@20121 | 26 --without-pam \ |
pascal@20121 | 27 --disable-anon \ |
pascal@20121 | 28 --disable-cram \ |
pascal@20121 | 29 --disable-digest \ |
pascal@20121 | 30 --disable-gssapi \ |
pascal@20121 | 31 --enable-login \ |
pascal@20121 | 32 --disable-otp \ |
pascal@20121 | 33 --enable-plain \ |
pascal@20121 | 34 --with-openssl \ |
pascal@20121 | 35 --with-devrandom=/dev/urandom \ |
gokhlayeh@8165 | 36 --mandir=/usr/share/man $CONFIGURE_ARGS && |
slaxemulator@8682 | 37 make -j1 && |
pascal@15600 | 38 make -j1 DESTDIR=$DESTDIR install |
gokhlayeh@8165 | 39 } |
gokhlayeh@8165 | 40 |
gokhlayeh@8165 | 41 |
gokhlayeh@8165 | 42 # Rules to gen a SliTaz package suitable for Tazpkg. |
gokhlayeh@8165 | 43 genpkg_rules() |
gokhlayeh@8165 | 44 { |
pascal@15600 | 45 cp -a $install/* $fs |
gokhlayeh@8165 | 46 } |