wok view libassuan/receipt @ rev 7581

Fixed typo in all firefox-langpack receipt.
author Christopher Rogers <slaxemulator@gmail.com>
date Thu Dec 09 15:16:14 2010 +0000 (2010-12-09)
parents 2f845953ed17
children ca5a9bd86e2a
line source
1 # SliTaz package receipt.
3 PACKAGE="libassuan"
4 VERSION="2.0.1"
5 CATEGORY="security"
6 SHORT_DESC="IPC library used by some of the other GnuPG related packages."
7 MAINTAINER="pankso@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.bz2"
9 WEB_SITE="http://www.gnupg.org/"
10 WGET_URL="ftp://ftp.gnupg.org/gcrypt/$PACKAGE/$TARBALL"
11 DEPENDS="libgpg-error"
12 BUILD_DEPENDS="python libgpg-error-dev pkg-config" # do not skip /usr/lib/libassuan-pth.a
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 ./configure \
19 --prefix=/usr \
20 $CONFIGURE_ARGS &&
21 make -j 4 &&
22 make DESTDIR=$PWD/_pkg install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr/share
29 cp -a $_pkg/usr/bin $fs/usr
30 cp -a $_pkg/usr/lib $fs/usr
31 cp -a $_pkg/usr/include $fs/usr
32 cp -a $_pkg/usr/share/aclocal $fs/usr/share
33 }