wok view libgpg-error/receipt @ rev 17854

Up: slitaz-boot-scripts (5.7.1)
author Aleksej Bobylev <al.bobylev@gmail.com>
date Wed Mar 25 00:32:22 2015 +0200 (2015-03-25)
parents 3b8da0bc3a5d
children ac006a7bf27c
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"
12 HOST_ARCH="i486 arm"
14 DEPENDS=""
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 touch src/extra-h.in
20 ./configure $CONFIGURE_ARGS &&
21 make && make DESTDIR=$DESTDIR install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr/bin $fs/usr/lib $fs/usr/share
29 cp -a $install/usr/bin/gpg-error $fs/usr/bin
30 cp -a $install/usr/lib/*.so* $fs/usr/lib
31 cp -a $install/usr/share/common-lisp $fs/usr/share
32 }