wok annotate libgpg-error/receipt @ rev 16221

ruby fix duplicated files ARM add libcroco, libgsf
author Christophe Lincoln <pankso@slitaz.org>
date Mon Mar 31 23:12:38 2014 +0200 (2014-03-31)
parents 3b8da0bc3a5d
children ac006a7bf27c
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"
pankso@15974 12 HOST_ARCH="i486 arm"
erjo@180 13
pascal@14714 14 DEPENDS=""
pascal@14714 15
erjo@180 16 # Rules to configure and make the package.
erjo@180 17 compile_rules()
erjo@180 18 {
pascal@14715 19 touch src/extra-h.in
pankso@15974 20 ./configure $CONFIGURE_ARGS &&
pankso@15974 21 make && make DESTDIR=$DESTDIR install
erjo@180 22 }
erjo@180 23
erjo@180 24 # Rules to gen a SliTaz package suitable for Tazpkg.
erjo@180 25 genpkg_rules()
erjo@180 26 {
erjo@180 27 mkdir -p $fs/usr/bin $fs/usr/lib $fs/usr/share
erjo@180 28
pascal@14714 29 cp -a $install/usr/bin/gpg-error $fs/usr/bin
pascal@14714 30 cp -a $install/usr/lib/*.so* $fs/usr/lib
pascal@14714 31 cp -a $install/usr/share/common-lisp $fs/usr/share
erjo@180 32 }
erjo@180 33