wok-6.x annotate libgpg-error/receipt @ rev 14714
lib[a-n]*: add LICENSE
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Tue Jun 11 10:41:23 2013 +0200 (2013-06-11) |
parents | a6cad1063c3c |
children | 3b8da0bc3a5d |
rev | line source |
---|---|
erjo@180 | 1 # SliTaz package receipt. |
erjo@180 | 2 |
erjo@180 | 3 PACKAGE="libgpg-error" |
slaxemulator@12375 | 4 VERSION="1.10" |
erjo@180 | 5 CATEGORY="security" |
erjo@180 | 6 SHORT_DESC="Commons error messages for GnuPG." |
erjo@784 | 7 MAINTAINER="erjo@slitaz.org" |
pascal@14714 | 8 LICENSE="GPL2" |
erjo@180 | 9 TARBALL="$PACKAGE-$VERSION.tar.bz2" |
erjo@180 | 10 WEB_SITE="http://www.gnupg.org/related_software/libgpg-error/" |
erjo@180 | 11 WGET_URL="ftp://ftp.gnupg.org/gcrypt/libgpg-error/$TARBALL" |
erjo@180 | 12 |
pascal@14714 | 13 DEPENDS="" |
pascal@14714 | 14 |
erjo@180 | 15 # Rules to configure and make the package. |
erjo@180 | 16 compile_rules() |
erjo@180 | 17 { |
erjo@180 | 18 cd $src |
slaxemulator@12375 | 19 ./configure \ |
slaxemulator@12375 | 20 $CONFIGURE_ARGS && |
slaxemulator@12375 | 21 make && |
slaxemulator@12375 | 22 make DESTDIR=$DESTDIR install |
erjo@180 | 23 } |
erjo@180 | 24 |
erjo@180 | 25 # Rules to gen a SliTaz package suitable for Tazpkg. |
erjo@180 | 26 genpkg_rules() |
erjo@180 | 27 { |
erjo@180 | 28 mkdir -p $fs/usr/bin $fs/usr/lib $fs/usr/share |
erjo@180 | 29 |
pascal@14714 | 30 cp -a $install/usr/bin/gpg-error $fs/usr/bin |
pascal@14714 | 31 cp -a $install/usr/lib/*.so* $fs/usr/lib |
pascal@14714 | 32 cp -a $install/usr/share/common-lisp $fs/usr/share |
erjo@180 | 33 } |
erjo@180 | 34 |