diff options
author | tnut <thierryn1 at hispeed dot ch> | 2011-02-01 22:04:07 +0100 |
---|---|---|
committer | tnut <thierryn1 at hispeed dot ch> | 2011-02-01 22:04:07 +0100 |
commit | 64b5674076192d2a3b3b342df6ecb33ea465f0ad (patch) | |
tree | b9bbc1ab39b5f7010cb69393927627385379064e /base/libgpg-error | |
parent | ff465b63de4b34dfd77051acd94c47d0c462d223 (diff) | |
download | nutyx-extra-64b5674076192d2a3b3b342df6ecb33ea465f0ad.tar.gz nutyx-extra-64b5674076192d2a3b3b342df6ecb33ea465f0ad.tar.bz2 nutyx-extra-64b5674076192d2a3b3b342df6ecb33ea465f0ad.tar.xz nutyx-extra-64b5674076192d2a3b3b342df6ecb33ea465f0ad.zip |
libgpg-error, est dans base
Diffstat (limited to 'base/libgpg-error')
-rw-r--r-- | base/libgpg-error/.footprint | 25 | ||||
-rw-r--r-- | base/libgpg-error/.md5sum | 1 | ||||
-rwxr-xr-x | base/libgpg-error/Pkgfile | 21 |
3 files changed, 47 insertions, 0 deletions
diff --git a/base/libgpg-error/.footprint b/base/libgpg-error/.footprint new file mode 100644 index 000000000..d5d01cc41 --- /dev/null +++ b/base/libgpg-error/.footprint @@ -0,0 +1,25 @@ +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/bin/ +-rwxr-xr-x root/root usr/bin/gpg-error +-rwxr-xr-x root/root usr/bin/gpg-error-config +drwxr-xr-x root/root usr/include/ +-rw-r--r-- root/root usr/include/gpg-error.h +drwxr-xr-x root/root usr/lib/ +-rwxr-xr-x root/root usr/lib/libgpg-error.la +lrwxrwxrwx root/root usr/lib/libgpg-error.so -> libgpg-error.so.0.7.0 +lrwxrwxrwx root/root usr/lib/libgpg-error.so.0 -> libgpg-error.so.0.7.0 +-rwxr-xr-x root/root usr/lib/libgpg-error.so.0.7.0 +drwxr-xr-x root/root usr/share/ +drwxr-xr-x root/root usr/share/aclocal/ +-rw-r--r-- root/root usr/share/aclocal/gpg-error.m4 +drwxr-xr-x root/root usr/share/common-lisp/ +drwxr-xr-x root/root usr/share/common-lisp/source/ +drwxr-xr-x root/root usr/share/common-lisp/source/gpg-error/ +-rw-r--r-- root/root usr/share/common-lisp/source/gpg-error/gpg-error-codes.lisp +-rw-r--r-- root/root usr/share/common-lisp/source/gpg-error/gpg-error-package.lisp +-rw-r--r-- root/root usr/share/common-lisp/source/gpg-error/gpg-error.asd +-rw-r--r-- root/root usr/share/common-lisp/source/gpg-error/gpg-error.lisp +drwxr-xr-x root/root usr/share/locale/ +drwxr-xr-x root/root usr/share/locale/fr/ +drwxr-xr-x root/root usr/share/locale/fr/LC_MESSAGES/ +-rw-r--r-- root/root usr/share/locale/fr/LC_MESSAGES/libgpg-error.mo diff --git a/base/libgpg-error/.md5sum b/base/libgpg-error/.md5sum new file mode 100644 index 000000000..58dabeaf1 --- /dev/null +++ b/base/libgpg-error/.md5sum @@ -0,0 +1 @@ +521b98aa9395e7eaf0ef2236233a0796 libgpg-error-1.9.tar.bz2 diff --git a/base/libgpg-error/Pkgfile b/base/libgpg-error/Pkgfile new file mode 100755 index 000000000..e52a056e6 --- /dev/null +++ b/base/libgpg-error/Pkgfile @@ -0,0 +1,21 @@ +# Description: contains a library that defines common error values for all GnuPG components +# URL: http://www.gnupg.org +# Maintainer: NuTyX core team +# Packager: thierryn1 at hispeed dot ch + +name=libgpg-error +version=1.9 +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 +} + |