wok-6.x annotate libsasl-without-ldap/receipt @ rev 21740
updated qjson and qjson-dev (0.8.1 -> 0.9.0)
author | Hans-G?nter Theisgen |
---|---|
date | Fri Jun 14 13:54:44 2019 +0100 (2019-06-14) |
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 } |