diff options
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 +} |