wok-next 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 | a6c873b6ecda |
children | 91b47daeae10 |
files | gpgme-dev/receipt gpgme/receipt |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/gpgme-dev/receipt Thu Sep 25 20:17:02 2008 +0200 1.3 @@ -0,0 +1,25 @@ 1.4 +# SliTaz package receipt. 1.5 + 1.6 +PACKED_SIZE="32.0k" 1.7 +UNPACKED_SIZE="104.0k" 1.8 +PACKAGE="gpgme-dev" 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="gpgme" 1.14 +TARBALL="$PACKAGE-$VERSION.tar.bz2" 1.15 +WEB_SITE="http://www.gnupg.org/gpgme.html" 1.16 +WANTED="gpgme" 1.17 + 1.18 + 1.19 + 1.20 +# Rules to gen a SliTaz package suitable for Tazpkg. 1.21 +genpkg_rules() 1.22 +{ 1.23 + mkdir -p $fs/usr/lib 1.24 + cp -a $_pkg/usr/lib/*.*a $fs/usr/lib 1.25 + cp -a $_pkg/usr/include $fs/usr 1.26 + cp -a $_pkg/usr/bin $fs/usr 1.27 +} 1.28 +
2.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 2.2 +++ b/gpgme/receipt Thu Sep 25 20:17:02 2008 +0200 2.3 @@ -0,0 +1,33 @@ 2.4 +# SliTaz package receipt. 2.5 + 2.6 +PACKED_SIZE="104.0k" 2.7 +UNPACKED_SIZE="220.0k" 2.8 +PACKAGE="gpgme" 2.9 +VERSION="1.1.4" 2.10 +CATEGORY="security" 2.11 +SHORT_DESC="C language library that allows to add support for cryptography to a program." 2.12 +MAINTAINER="erjo@slitaz.org" 2.13 +DEPENDS="libgpg-error" 2.14 +BUILD_DEPENDS="libgpg-error-dev" 2.15 +TARBALL="$PACKAGE-$VERSION.tar.bz2" 2.16 +WEB_SITE="http://www.gnupg.org/gpgme.html" 2.17 +WGET_URL="ftp://ftp.gnupg.org/gcrypt/gpgme/$TARBALL" 2.18 + 2.19 +# Rules to configure and make the package. 2.20 +compile_rules() 2.21 +{ 2.22 + cd $src 2.23 + ./configure --prefix=/usr \ 2.24 + --infodir=/usr/share/info \ 2.25 + --mandir=/usr/share/man $CONFIGURE_ARGS && 2.26 + make && 2.27 + make DESTDIR=$PWD/_pkg install 2.28 +} 2.29 + 2.30 +# Rules to gen a SliTaz package suitable for Tazpkg. 2.31 +genpkg_rules() 2.32 +{ 2.33 + mkdir -p $fs/usr/lib 2.34 + cp -a $_pkg/usr/lib/*.so* $fs/usr/lib 2.35 +} 2.36 +