summaryrefslogtreecommitdiff
path: root/xibuilds/pkg-config.xibuild
diff options
context:
space:
mode:
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
+}