wok view libksba/receipt @ rev 10355

libIDL: Update WGET_URL to use GNOME_MIRROR in tazwok.conf and cook.conf.
author Christopher Rogers <slaxemulator@gmail.com>
date Sun May 22 16:49:53 2011 +0000 (2011-05-22)
parents 65b46bbb8da7
children 871621a59544
line source
1 # SliTaz package receipt.
3 PACKAGE="libksba"
4 VERSION="1.0.7"
5 CATEGORY="security"
6 SHORT_DESC="Library to work with X.509 certificates, CMS data and related objects."
7 MAINTAINER="pankso@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.bz2"
9 DEPENDS="libgpg-error"
10 WEB_SITE="http://www.gnupg.org/related_software/libksba/"
11 WGET_URL="ftp://ftp.gnupg.org/gcrypt/$PACKAGE/$TARBALL"
13 # Rules to configure and make the package.
14 compile_rules()
15 {
16 cd $src
17 ./configure \
18 --prefix=/usr \
19 $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/lib/*.so* $fs/usr/lib
29 }