wok view libgpg-error/receipt @ rev 15274

mingw32-gcc: remove a wrong error trigger
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Sep 25 16:27:31 2013 +0000 (2013-09-25)
parents 4904e3d374a9
children ab5bde7ad5e1
line source
1 # SliTaz package receipt.
3 PACKAGE="libgpg-error"
4 VERSION="1.10"
5 CATEGORY="security"
6 SHORT_DESC="Commons error messages for GnuPG."
7 MAINTAINER="erjo@slitaz.org"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
10 WEB_SITE="http://www.gnupg.org/related_software/libgpg-error/"
11 WGET_URL="ftp://ftp.gnupg.org/gcrypt/libgpg-error/$TARBALL"
13 DEPENDS=""
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 touch src/extra-h.in
20 ./configure \
21 $CONFIGURE_ARGS &&
22 make &&
23 make DESTDIR=$DESTDIR install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr/bin $fs/usr/lib $fs/usr/share
31 cp -a $install/usr/bin/gpg-error $fs/usr/bin
32 cp -a $install/usr/lib/*.so* $fs/usr/lib
33 cp -a $install/usr/share/common-lisp $fs/usr/share
34 }