wok-6.x diff gpgme/receipt @ rev 1420

Add: gpgme, gpgme-dev
author Eric Joseph-Alexandre <erjo@slitaz.org>
date Thu Sep 25 20:17:02 2008 +0200 (2008-09-25)
parents
children 3d99ecce2d4b
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/gpgme/receipt	Thu Sep 25 20:17:02 2008 +0200
     1.3 @@ -0,0 +1,33 @@
     1.4 +# SliTaz package receipt.
     1.5 +
     1.6 +PACKED_SIZE="104.0k"
     1.7 +UNPACKED_SIZE="220.0k"
     1.8 +PACKAGE="gpgme"
     1.9 +VERSION="1.1.4"
    1.10 +CATEGORY="security"
    1.11 +SHORT_DESC="C language library that allows to add support for cryptography to a program."
    1.12 +MAINTAINER="erjo@slitaz.org"
    1.13 +DEPENDS="libgpg-error"
    1.14 +BUILD_DEPENDS="libgpg-error-dev"
    1.15 +TARBALL="$PACKAGE-$VERSION.tar.bz2"
    1.16 +WEB_SITE="http://www.gnupg.org/gpgme.html"
    1.17 +WGET_URL="ftp://ftp.gnupg.org/gcrypt/gpgme/$TARBALL"
    1.18 +
    1.19 +# Rules to configure and make the package.
    1.20 +compile_rules()
    1.21 +{
    1.22 +	cd $src
    1.23 +	./configure --prefix=/usr \
    1.24 +	 --infodir=/usr/share/info \
    1.25 +	 --mandir=/usr/share/man $CONFIGURE_ARGS &&
    1.26 +	make &&
    1.27 +	make DESTDIR=$PWD/_pkg install
    1.28 +}
    1.29 +
    1.30 +# Rules to gen a SliTaz package suitable for Tazpkg.
    1.31 +genpkg_rules()
    1.32 +{
    1.33 +	mkdir -p $fs/usr/lib
    1.34 +	cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
    1.35 +}
    1.36 +