diff options
-rw-r--r-- | extra/libgcrypt/.footprint | 20 | ||||
-rw-r--r-- | extra/libgcrypt/.md5sum | 1 | ||||
-rwxr-xr-x | extra/libgcrypt/Pkgfile | 19 |
3 files changed, 40 insertions, 0 deletions
diff --git a/extra/libgcrypt/.footprint b/extra/libgcrypt/.footprint new file mode 100644 index 000000000..69723886a --- /dev/null +++ b/extra/libgcrypt/.footprint @@ -0,0 +1,20 @@ +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/bin/ +-rwxr-xr-x root/root usr/bin/dumpsexp +-rwxr-xr-x root/root usr/bin/hmac256 +-rwxr-xr-x root/root usr/bin/libgcrypt-config +drwxr-xr-x root/root usr/include/ +-rw-r--r-- root/root usr/include/gcrypt-module.h +-rw-r--r-- root/root usr/include/gcrypt.h +drwxr-xr-x root/root usr/lib/ +-rw-r--r-- root/root usr/lib/libgcrypt.a +-rwxr-xr-x root/root usr/lib/libgcrypt.la +lrwxrwxrwx root/root usr/lib/libgcrypt.so -> libgcrypt.so.11.5.0 +lrwxrwxrwx root/root usr/lib/libgcrypt.so.11 -> libgcrypt.so.11.5.0 +-rwxr-xr-x root/root usr/lib/libgcrypt.so.11.5.0 +drwxr-xr-x root/root usr/sbin/ +drwxr-xr-x root/root usr/share/ +drwxr-xr-x root/root usr/share/aclocal/ +-rw-r--r-- root/root usr/share/aclocal/libgcrypt.m4 +drwxr-xr-x root/root usr/share/info/ +-rw-r--r-- root/root usr/share/info/gcrypt.info.gz diff --git a/extra/libgcrypt/.md5sum b/extra/libgcrypt/.md5sum new file mode 100644 index 000000000..431d79c73 --- /dev/null +++ b/extra/libgcrypt/.md5sum @@ -0,0 +1 @@ +0d27005ff43ecf3d96ae02d99bf793ba libgcrypt-1.4.2.tar.bz2 diff --git a/extra/libgcrypt/Pkgfile b/extra/libgcrypt/Pkgfile new file mode 100755 index 000000000..6cf39ef53 --- /dev/null +++ b/extra/libgcrypt/Pkgfile @@ -0,0 +1,19 @@ +# Description: contains a general purpose crypto library based on the code used in GnuPG +# URL: http://ftp.gnupg.org/gcrypt/libgcrypt/ +# Maintainer: NuTyX core team +# Packager: thierryn1 at hispeed dot ch +# Depends on: libgpg-error + +name=libgcrypt +version=1.4.2 +release=1 +source=(ftp://ftp.gnupg.org/gcrypt/$name/$name-$version.tar.bz2 ) +build() { +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 +} |