summaryrefslogtreecommitdiffstats
path: root/libassuan/Pkgfile
diff options
context:
space:
mode:
Diffstat (limited to 'libassuan/Pkgfile')
-rwxr-xr-xlibassuan/Pkgfile25
1 files changed, 25 insertions, 0 deletions
diff --git a/libassuan/Pkgfile b/libassuan/Pkgfile
new file mode 100755
index 000000000..53a48023e
--- /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.1
+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
+}
+