diff options
author | Thierry N <thierryn1 at hispeed dot ch> | 2009-08-07 13:31:40 +0200 |
---|---|---|
committer | Thierry N <thierryn1 at hispeed dot ch> | 2009-08-07 13:31:40 +0200 |
commit | d866e9bac5da771698a7072a537d79d6a1375ad0 (patch) | |
tree | d7e1878341eade38d2363d73d32828e749e5eb23 /base | |
parent | 9db4766d352665c31b2a5595367fc627f2ad195c (diff) | |
download | nutyx-pakxe-d866e9bac5da771698a7072a537d79d6a1375ad0.tar.gz nutyx-pakxe-d866e9bac5da771698a7072a537d79d6a1375ad0.tar.bz2 nutyx-pakxe-d866e9bac5da771698a7072a537d79d6a1375ad0.tar.xz nutyx-pakxe-d866e9bac5da771698a7072a537d79d6a1375ad0.zip |
Ajout de pkg-config#0.23-1
Diffstat (limited to 'base')
-rw-r--r-- | base/pkg-config/.footprint | 9 | ||||
-rw-r--r-- | base/pkg-config/.md5sum | 1 | ||||
-rwxr-xr-x | base/pkg-config/Pkgfile | 20 |
3 files changed, 30 insertions, 0 deletions
diff --git a/base/pkg-config/.footprint b/base/pkg-config/.footprint new file mode 100644 index 000000000..b1887f017 --- /dev/null +++ b/base/pkg-config/.footprint @@ -0,0 +1,9 @@ +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/bin/ +-rwxr-xr-x root/root usr/bin/pkg-config +drwxr-xr-x root/root usr/share/ +drwxr-xr-x root/root usr/share/aclocal/ +-rw-r--r-- root/root usr/share/aclocal/pkg.m4 +drwxr-xr-x root/root usr/share/man/ +drwxr-xr-x root/root usr/share/man/man1/ +-rw-r--r-- root/root usr/share/man/man1/pkg-config.1.gz diff --git a/base/pkg-config/.md5sum b/base/pkg-config/.md5sum new file mode 100644 index 000000000..0675a0c83 --- /dev/null +++ b/base/pkg-config/.md5sum @@ -0,0 +1 @@ +d922a88782b64441d06547632fd85744 pkg-config-0.23.tar.gz diff --git a/base/pkg-config/Pkgfile b/base/pkg-config/Pkgfile new file mode 100755 index 000000000..5b2178d0e --- /dev/null +++ b/base/pkg-config/Pkgfile @@ -0,0 +1,20 @@ +# Description: Outil permettant le traitement des fichiers Includes des librairies +# URL: http://pkgconfig.freedesktop.org/ +# Maintainer: NuTyX core team +# Packager: thierryn1 at hispeed dot ch +# Depends on: + +name=pkg-config +version=0.23 +release=1 +source=( http://pkgconfig.freedesktop.org/releases/$name-$version.tar.gz) + + +build() { + cd $name-$version + ./configure --prefix=/usr \ + --mandir=/usr/share/man \ + --infodir=/usr/share/info + make + make DESTDIR=$PKG install +} |