commit b556b44749c09008f74138916b660dfa07dfcd8f
parent f9b84b4967282cd6da931b7ea2569557937d4e24
Author: Shokara Kou <kou@13f0.net>
Date: Fri, 13 May 2022 12:29:54 -0400
add pkgconf, pkg-config alternative
Diffstat:
3 files changed, 56 insertions(+), 0 deletions(-)
diff --git a/pkgconf/.footprint b/pkgconf/.footprint
@@ -0,0 +1,32 @@
+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/include/
+drwxr-xr-x root/root usr/include/pkgconf/
+drwxr-xr-x root/root usr/include/pkgconf/libpkgconf/
+-rw-r--r-- root/root usr/include/pkgconf/libpkgconf/bsdstubs.h
+-rw-r--r-- root/root usr/include/pkgconf/libpkgconf/iter.h
+-rw-r--r-- root/root usr/include/pkgconf/libpkgconf/libpkgconf-api.h
+-rw-r--r-- root/root usr/include/pkgconf/libpkgconf/libpkgconf.h
+-rw-r--r-- root/root usr/include/pkgconf/libpkgconf/stdinc.h
+drwxr-xr-x root/root usr/lib/
+-rw-r--r-- root/root usr/lib/libpkgconf.a
+-rwxr-xr-x root/root usr/lib/libpkgconf.la
+lrwxrwxrwx root/root usr/lib/libpkgconf.so -> libpkgconf.so.3.0.0
+lrwxrwxrwx root/root usr/lib/libpkgconf.so.3 -> libpkgconf.so.3.0.0
+-rwxr-xr-x root/root usr/lib/libpkgconf.so.3.0.0
+drwxr-xr-x root/root usr/lib/pkgconfig/
+-rw-r--r-- root/root usr/lib/pkgconfig/libpkgconf.pc
+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/
+lrwxrwxrwx root/root usr/share/man/man1/pkg-config.1.gz -> pkgconf.1.gz
+-rw-r--r-- root/root usr/share/man/man1/pkgconf.1.gz
+drwxr-xr-x root/root usr/share/man/man5/
+-rw-r--r-- root/root usr/share/man/man5/pc.5.gz
+-rw-r--r-- root/root usr/share/man/man5/pkgconf-personality.5.gz
+drwxr-xr-x root/root usr/share/man/man7/
+-rw-r--r-- root/root usr/share/man/man7/pkg.m4.7.gz
diff --git a/pkgconf/.md5sum b/pkgconf/.md5sum
@@ -0,0 +1 @@
+823212dc241793df8ff1d097769a3473 pkgconf-1.8.0.tar.xz
diff --git a/pkgconf/Pkgfile b/pkgconf/Pkgfile
@@ -0,0 +1,23 @@
+# Description: A system for managing library compile/link flags.
+# URL: https://git.sr.ht/~kaniini/pkgconf
+# Maintainer: Shokara Kou, kou at 13f0 dot net
+# Packager: Tim Biermann, tbier at posteo dot de
+# Depends on:
+
+name=pkgconf
+version=1.8.0
+release=1
+source=(https://distfiles.dereferenced.org/pkgconf/$name-$version.tar.xz)
+
+build() {
+ cd $name-$version
+
+ ./configure --prefix=/usr
+ make
+ make DESTDIR=$PKG install
+
+ ln -s pkgconf $PKG/usr/bin/pkg-config
+ ln -s pkgconf.1 $PKG/usr/share/man/man1/pkg-config.1
+
+ rm -fr $PKG/usr/share/doc
+}