diff options
author | tnut <tnut at nutyx dot com> | 2012-05-09 05:57:15 +0200 |
---|---|---|
committer | tnut <tnut at nutyx dot com> | 2012-05-09 05:57:15 +0200 |
commit | 37e8b04c407c359b9ec64c9150084f412978974d (patch) | |
tree | c24d485ace2c639aac595e64de203da1a8396531 /libassuan/Pkgfile | |
parent | b2947e81cde8632aa04146a300d28b2421211f0a (diff) | |
download | nutyx-pakxe-37e8b04c407c359b9ec64c9150084f412978974d.tar.gz nutyx-pakxe-37e8b04c407c359b9ec64c9150084f412978974d.tar.bz2 nutyx-pakxe-37e8b04c407c359b9ec64c9150084f412978974d.tar.xz nutyx-pakxe-37e8b04c407c359b9ec64c9150084f412978974d.zip |
libassuan, maj 2.0.2-1
Diffstat (limited to 'libassuan/Pkgfile')
-rwxr-xr-x | libassuan/Pkgfile | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/libassuan/Pkgfile b/libassuan/Pkgfile new file mode 100755 index 000000000..e7e8f6d07 --- /dev/null +++ b/libassuan/Pkgfile @@ -0,0 +1,25 @@ +# Description: contains an IPC library used by some of the other GnuPG related packages +# URL: http://ftp.gnuorg.org/gcrypt/libassuan +# Maintainer: NuTyX core team +# Packager: thierryn1 at hispeed dot ch +# Depends on: libgpg-error +# Run on: libgpg-error + +name=libassuan +version=2.0.2 +release=1 +source=( ftp://ftp.gnupg.org/gcrypt/$name/$name-$version.tar.bz2) + + + +build() { + # build package +cd $name-$version +./configure --prefix=/usr\ + --mandir=/usr/share/man\ + --infodir=/usr/share/info +make +make DESTDIR=$PKG install +rm $PKG/usr/share/info/dir +} + |