summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--pkgconf/.footprint32
-rw-r--r--pkgconf/.md5sum1
-rw-r--r--pkgconf/Pkgfile23
3 files changed, 56 insertions, 0 deletions
diff --git a/pkgconf/.footprint b/pkgconf/.footprint
new file mode 100644
index 0000000..058dfb2
--- /dev/null
+++ b/pkgconf/.footprint
@@ -0,0 +1,32 @@
1drwxr-xr-x root/root usr/
2drwxr-xr-x root/root usr/bin/
3lrwxrwxrwx root/root usr/bin/pkg-config -> pkgconf
4-rwxr-xr-x root/root usr/bin/pkgconf
5drwxr-xr-x root/root usr/include/
6drwxr-xr-x root/root usr/include/pkgconf/
7drwxr-xr-x root/root usr/include/pkgconf/libpkgconf/
8-rw-r--r-- root/root usr/include/pkgconf/libpkgconf/bsdstubs.h
9-rw-r--r-- root/root usr/include/pkgconf/libpkgconf/iter.h
10-rw-r--r-- root/root usr/include/pkgconf/libpkgconf/libpkgconf-api.h
11-rw-r--r-- root/root usr/include/pkgconf/libpkgconf/libpkgconf.h
12-rw-r--r-- root/root usr/include/pkgconf/libpkgconf/stdinc.h
13drwxr-xr-x root/root usr/lib/
14-rw-r--r-- root/root usr/lib/libpkgconf.a
15-rwxr-xr-x root/root usr/lib/libpkgconf.la
16lrwxrwxrwx root/root usr/lib/libpkgconf.so -> libpkgconf.so.3.0.0
17lrwxrwxrwx root/root usr/lib/libpkgconf.so.3 -> libpkgconf.so.3.0.0
18-rwxr-xr-x root/root usr/lib/libpkgconf.so.3.0.0
19drwxr-xr-x root/root usr/lib/pkgconfig/
20-rw-r--r-- root/root usr/lib/pkgconfig/libpkgconf.pc
21drwxr-xr-x root/root usr/share/
22drwxr-xr-x root/root usr/share/aclocal/
23-rw-r--r-- root/root usr/share/aclocal/pkg.m4
24drwxr-xr-x root/root usr/share/man/
25drwxr-xr-x root/root usr/share/man/man1/
26lrwxrwxrwx root/root usr/share/man/man1/pkg-config.1.gz -> pkgconf.1.gz
27-rw-r--r-- root/root usr/share/man/man1/pkgconf.1.gz
28drwxr-xr-x root/root usr/share/man/man5/
29-rw-r--r-- root/root usr/share/man/man5/pc.5.gz
30-rw-r--r-- root/root usr/share/man/man5/pkgconf-personality.5.gz
31drwxr-xr-x root/root usr/share/man/man7/
32-rw-r--r-- root/root usr/share/man/man7/pkg.m4.7.gz
diff --git a/pkgconf/.md5sum b/pkgconf/.md5sum
new file mode 100644
index 0000000..2a7ee36
--- /dev/null
+++ b/pkgconf/.md5sum
@@ -0,0 +1 @@
823212dc241793df8ff1d097769a3473 pkgconf-1.8.0.tar.xz
diff --git a/pkgconf/Pkgfile b/pkgconf/Pkgfile
new file mode 100644
index 0000000..e8719dc
--- /dev/null
+++ b/pkgconf/Pkgfile
@@ -0,0 +1,23 @@
1# Description: A system for managing library compile/link flags.
2# URL: https://git.sr.ht/~kaniini/pkgconf
3# Maintainer: Shokara Kou, kou at 13f0 dot net
4# Packager: Tim Biermann, tbier at posteo dot de
5# Depends on:
6
7name=pkgconf
8version=1.8.0
9release=1
10source=(https://distfiles.dereferenced.org/pkgconf/$name-$version.tar.xz)
11
12build() {
13 cd $name-$version
14
15 ./configure --prefix=/usr
16 make
17 make DESTDIR=$PKG install
18
19 ln -s pkgconf $PKG/usr/bin/pkg-config
20 ln -s pkgconf.1 $PKG/usr/share/man/man1/pkg-config.1
21
22 rm -fr $PKG/usr/share/doc
23}