diff options
author | Svyatoslav Mishyn <juef@openmailbox.org> | 2016-06-10 14:46:35 +0300 |
---|---|---|
committer | Svyatoslav Mishyn <juef@openmailbox.org> | 2016-06-10 14:46:35 +0300 |
commit | a4a87ecae55175b7291d65e8a4a5b77e7784a2c2 (patch) | |
tree | 3b7044f16aea9c1d709a6b7ab0b3b22cc8eaa8b5 /pkgconf | |
parent | 481b40e55b0c782d554ed6901ea8413d2d38e232 (diff) | |
download | contrib-a4a87ecae55175b7291d65e8a4a5b77e7784a2c2.tar.gz contrib-a4a87ecae55175b7291d65e8a4a5b77e7784a2c2.tar.xz |
pkgconf: initial import
Diffstat (limited to 'pkgconf')
-rw-r--r-- | pkgconf/.footprint | 10 | ||||
-rw-r--r-- | pkgconf/.md5sum | 1 | ||||
-rw-r--r-- | pkgconf/Pkgfile | 20 |
3 files changed, 31 insertions, 0 deletions
diff --git a/pkgconf/.footprint b/pkgconf/.footprint new file mode 100644 index 000000000..9d433451d --- /dev/null +++ b/pkgconf/.footprint @@ -0,0 +1,10 @@ +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/bin/ +lrwxrwxrwx root/root usr/bin/pkg-config -> pkgconf +-rwxr-xr-x root/root usr/bin/pkgconf +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/pkgconf.1.gz diff --git a/pkgconf/.md5sum b/pkgconf/.md5sum new file mode 100644 index 000000000..e26ac7596 --- /dev/null +++ b/pkgconf/.md5sum @@ -0,0 +1 @@ +a7b523fc9af9357d7199560d2a49ddbf pkgconf-0.9.12.tar.bz2 diff --git a/pkgconf/Pkgfile b/pkgconf/Pkgfile new file mode 100644 index 000000000..8ec48930a --- /dev/null +++ b/pkgconf/Pkgfile @@ -0,0 +1,20 @@ +# Description: A system for managing library compile/link flags +# URL: https://github.com/pkgconf/pkgconf +# Maintainer: Svyatoslav Mishyn, juef at openmailbox dot org + +name=pkgconf +version=0.9.12 +release=1 +source=(https://github.com/$name/$name/releases/download/$name-$version/$name-$version.tar.bz2) + +build() { + cd $name-$version + + ./configure --prefix=/usr \ + --with-system-libdir=/lib:/usr/lib + + make + make install MANDIR=/usr/share/man/man1 DESTDIR=$PKG + + ln -fs pkgconf $PKG/usr/bin/pkg-config +} |