wok annotate libgpg-error/receipt @ rev 14953

Up: elementary (1.7.8)
author Dominique Corbex <domcox@slitaz.org>
date Thu Aug 08 19:16:07 2013 +0200 (2013-08-08)
parents 4904e3d374a9
children ab5bde7ad5e1
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
pascal@14715 19 touch src/extra-h.in
slaxemulator@12375 20 ./configure \
slaxemulator@12375 21 $CONFIGURE_ARGS &&
slaxemulator@12375 22 make &&
slaxemulator@12375 23 make DESTDIR=$DESTDIR install
erjo@180 24 }
erjo@180 25
erjo@180 26 # Rules to gen a SliTaz package suitable for Tazpkg.
erjo@180 27 genpkg_rules()
erjo@180 28 {
erjo@180 29 mkdir -p $fs/usr/bin $fs/usr/lib $fs/usr/share
erjo@180 30
pascal@14714 31 cp -a $install/usr/bin/gpg-error $fs/usr/bin
pascal@14714 32 cp -a $install/usr/lib/*.so* $fs/usr/lib
pascal@14714 33 cp -a $install/usr/share/common-lisp $fs/usr/share
erjo@180 34 }
erjo@180 35