wok view gsasl/receipt @ rev 2683

Add: libev
author Mallory MOLLO <mallory@skyrock.com>
date Wed Apr 22 17:08:17 2009 +0200 (2009-04-22)
parents 6482ef7f60b1
children 9f19aee613be
line source
1 # SliTaz package receipt.
3 PACKAGE="gsasl"
4 VERSION="0.2.29"
5 CATEGORY="system-tools"
6 SHORT_DESC="Simple Authentication and Security Layer."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.gz"
9 WEB_SITE="http://www.gnu.org/software/$PACKAGE/"
10 WGET_URL="ftp://alpha.gnu.org/pub/gnu/$PACKAGE/$TARBALL"
11 DEPENDS="gnutls libgcrypt libgpg-error ncurses readline zlib"
13 # Rules to configure and make the package.
14 compile_rules()
15 {
16 cd $src
17 ./configure --prefix=/usr --infodir=/usr/share/info \
18 --mandir=/usr/share/man $CONFIGURE_ARGS &&
19 make &&
20 make DESTDIR=$PWD/_pkg install
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 mkdir -p $fs/usr/lib
27 cp -a $_pkg/usr/bin $fs/usr
28 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
29 }