diff options
| -rw-r--r-- | pkgconf/.footprint | 32 | ||||
| -rw-r--r-- | pkgconf/.md5sum | 1 | ||||
| -rw-r--r-- | pkgconf/Pkgfile | 23 |
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 @@ | |||
| 1 | drwxr-xr-x root/root usr/ | ||
| 2 | drwxr-xr-x root/root usr/bin/ | ||
| 3 | lrwxrwxrwx root/root usr/bin/pkg-config -> pkgconf | ||
| 4 | -rwxr-xr-x root/root usr/bin/pkgconf | ||
| 5 | drwxr-xr-x root/root usr/include/ | ||
| 6 | drwxr-xr-x root/root usr/include/pkgconf/ | ||
| 7 | drwxr-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 | ||
| 13 | drwxr-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 | ||
| 16 | lrwxrwxrwx root/root usr/lib/libpkgconf.so -> libpkgconf.so.3.0.0 | ||
| 17 | lrwxrwxrwx 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 | ||
| 19 | drwxr-xr-x root/root usr/lib/pkgconfig/ | ||
| 20 | -rw-r--r-- root/root usr/lib/pkgconfig/libpkgconf.pc | ||
| 21 | drwxr-xr-x root/root usr/share/ | ||
| 22 | drwxr-xr-x root/root usr/share/aclocal/ | ||
| 23 | -rw-r--r-- root/root usr/share/aclocal/pkg.m4 | ||
| 24 | drwxr-xr-x root/root usr/share/man/ | ||
| 25 | drwxr-xr-x root/root usr/share/man/man1/ | ||
| 26 | lrwxrwxrwx 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 | ||
| 28 | drwxr-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 | ||
| 31 | drwxr-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 | |||
| 7 | name=pkgconf | ||
| 8 | version=1.8.0 | ||
| 9 | release=1 | ||
| 10 | source=(https://distfiles.dereferenced.org/pkgconf/$name-$version.tar.xz) | ||
| 11 | |||
| 12 | build() { | ||
| 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 | } | ||
