wok-6.x annotate libgpg-error/receipt @ rev 15974
libgpg-error: add to ARM arch
author | Christophe Lincoln <pankso@slitaz.org> |
---|---|
date | Fri Feb 28 18:49:26 2014 +0100 (2014-02-28) |
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 |