wok-6.x annotate gsasl/receipt @ rev 15659
c_icap: do not start daemon while cooking
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Thu Dec 12 07:48:19 2013 +0000 (2013-12-12) |
parents | c79cc4583669 |
children | f0a575154c06 |
rev | line source |
---|---|
pascal@2132 | 1 # SliTaz package receipt. |
pascal@2132 | 2 |
pascal@2132 | 3 PACKAGE="gsasl" |
pascal@2132 | 4 VERSION="0.2.29" |
pascal@2132 | 5 CATEGORY="system-tools" |
pascal@2132 | 6 SHORT_DESC="Simple Authentication and Security Layer." |
pascal@2132 | 7 MAINTAINER="pascal.bellard@slitaz.org" |
pascal@15265 | 8 LICENSE="GPL3" |
pascal@2132 | 9 TARBALL="$PACKAGE-$VERSION.tar.gz" |
pascal@2132 | 10 WEB_SITE="http://www.gnu.org/software/$PACKAGE/" |
pascal@2132 | 11 WGET_URL="ftp://alpha.gnu.org/pub/gnu/$PACKAGE/$TARBALL" |
pascal@15265 | 12 |
pascal@5001 | 13 DEPENDS="gnutls libgcrypt libgpg-error ncurses readline zlib libidn libkrb5 \ |
pascal@5029 | 14 libcomerr3 libtasn1" |
pascal@2132 | 15 |
pascal@2132 | 16 # Rules to configure and make the package. |
pascal@2132 | 17 compile_rules() |
pascal@2132 | 18 { |
pascal@2132 | 19 cd $src |
pascal@2132 | 20 ./configure --prefix=/usr --infodir=/usr/share/info \ |
pascal@2132 | 21 --mandir=/usr/share/man $CONFIGURE_ARGS && |
pascal@15265 | 22 make $MAKEFLAGS && |
pascal@15265 | 23 make DESTDIR=$DESTDIR install |
pascal@2132 | 24 } |
pascal@2132 | 25 |
pascal@2132 | 26 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@2132 | 27 genpkg_rules() |
pascal@2132 | 28 { |
pascal@2132 | 29 mkdir -p $fs/usr/lib |
pascal@15265 | 30 cp -a $install/usr/bin $fs/usr |
pascal@15265 | 31 cp -a $install/usr/lib/*.so* $fs/usr/lib |
pascal@2132 | 32 } |
pascal@2132 | 33 |