wok view gsasl/receipt @ rev 13950

add libwmf libwmf-dev
author ernia <monghitri@aruba.it>
date Tue Jan 29 21:00:25 2013 +0000 (2013-01-29)
parents 9f19aee613be
children 4e2cb1cd3aca
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 libidn libkrb5 \
12 libcomerr3 libtasn1"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 ./configure --prefix=/usr --infodir=/usr/share/info \
19 --mandir=/usr/share/man $CONFIGURE_ARGS &&
20 make &&
21 make DESTDIR=$PWD/_pkg install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr/lib
28 cp -a $_pkg/usr/bin $fs/usr
29 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
30 }