summaryrefslogtreecommitdiff
path: root/xibuilds/pkg-config.xibuild
diff options
context:
space:
mode:
authordavidovski <david@davidovski.xyz>2021-10-06 09:03:02 +0100
committerdavidovski <david@davidovski.xyz>2021-10-06 09:03:02 +0100
commitd4cb1386d79c95e7586e7bccad5b0f6c7861cfe8 (patch)
treefaf7ff136ab50bdcf34f2d0c02002192c1c8bc39 /xibuilds/pkg-config.xibuild
parentcdea2f67ae42d4220e19a555259b69a960925283 (diff)
added tarcapabilities
Diffstat (limited to 'xibuilds/pkg-config.xibuild')
-rw-r--r--xibuilds/pkg-config.xibuild16
1 files changed, 16 insertions, 0 deletions
diff --git a/xibuilds/pkg-config.xibuild b/xibuilds/pkg-config.xibuild
new file mode 100644
index 0000000..0b5de5a
--- /dev/null
+++ b/xibuilds/pkg-config.xibuild
@@ -0,0 +1,16 @@
+#!/bin/bash
+
+DEPS=(glibc)
+SOURCE=https://gitlab.freedesktop.org/pkg-config/pkg-config
+
+DESC="a tool for passing the include path to build tools during configure and make phases of package installations"
+
+build () {
+ ./autogen.sh
+ ./configure --prefix=/usr --disable-host-tool --docdir=/usr/share/doc/pkg-config
+
+ make
+ make check
+
+ make DESTDIR=$PKG_DEST install
+}