diff options
author | Thierry N <thierryn1 at hispeed dot ch> | 2009-08-07 14:24:49 +0200 |
---|---|---|
committer | Thierry N <thierryn1 at hispeed dot ch> | 2009-08-07 14:24:49 +0200 |
commit | 26f3d58598ecdf83fa67b6183c7a9b0f60ca9621 (patch) | |
tree | a1de83e2dbd2aa58505fbba99f4707971914573f /base | |
parent | 92ad0d5dae62292979b91114a2a01fc29a4fedd6 (diff) | |
download | nutyx-pakxe-26f3d58598ecdf83fa67b6183c7a9b0f60ca9621.tar.gz nutyx-pakxe-26f3d58598ecdf83fa67b6183c7a9b0f60ca9621.tar.bz2 nutyx-pakxe-26f3d58598ecdf83fa67b6183c7a9b0f60ca9621.tar.xz nutyx-pakxe-26f3d58598ecdf83fa67b6183c7a9b0f60ca9621.zip |
Ajout de popt#1.15-1
Diffstat (limited to 'base')
-rw-r--r-- | base/popt/.footprint | 17 | ||||
-rw-r--r-- | base/popt/.md5sum | 1 | ||||
-rwxr-xr-x | base/popt/Pkgfile | 20 |
3 files changed, 38 insertions, 0 deletions
diff --git a/base/popt/.footprint b/base/popt/.footprint new file mode 100644 index 000000000..26ad745c4 --- /dev/null +++ b/base/popt/.footprint @@ -0,0 +1,17 @@ +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/include/ +-rw-r--r-- root/root usr/include/popt.h +drwxr-xr-x root/root usr/lib/ +-rw-r--r-- root/root usr/lib/libpopt.a +-rwxr-xr-x root/root usr/lib/libpopt.la +lrwxrwxrwx root/root usr/lib/libpopt.so -> libpopt.so.0.0.0 +lrwxrwxrwx root/root usr/lib/libpopt.so.0 -> libpopt.so.0.0.0 +-rwxr-xr-x root/root usr/lib/libpopt.so.0.0.0 +drwxr-xr-x root/root usr/share/ +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/popt.mo +drwxr-xr-x root/root usr/share/man/ +drwxr-xr-x root/root usr/share/man/man3/ +-rw-r--r-- root/root usr/share/man/man3/popt.3.gz diff --git a/base/popt/.md5sum b/base/popt/.md5sum new file mode 100644 index 000000000..3d1d7d1b8 --- /dev/null +++ b/base/popt/.md5sum @@ -0,0 +1 @@ +c61ef795fa450eb692602a661ec8d7f1 popt-1.15.tar.gz diff --git a/base/popt/Pkgfile b/base/popt/Pkgfile new file mode 100755 index 000000000..f798ffcfe --- /dev/null +++ b/base/popt/Pkgfile @@ -0,0 +1,20 @@ +# Description: Librairies permettant à certains programmes de passer des options aux commandes en ligne +# URL: http://freshmeat.net/projects/popt/ +# Maintainer: NuTyX core team +# Packager: thierryn1 at hispeed dot ch +# Depends on: gettext + +name=popt +version=1.15 +release=1 +source=(http://rpm5.org/files/$name/$name-$version.tar.gz) + + +build() { + cd $name-$version + ./configure --prefix=/usr \ + --mandir=/usr/share/man \ + --infodir=/usr/share/info + make + make DESTDIR=$PKG install +} |