summaryrefslogtreecommitdiff
path: root/xibuilds/pkg-config.xibuild
diff options
context:
space:
mode:
authordavidovski <david@davidovski.xyz>2021-10-06 17:18:43 +0100
committerdavidovski <david@davidovski.xyz>2021-10-06 17:18:43 +0100
commitc25b6890891c7ef34e129c8c54efdf2993234aa0 (patch)
treeefce372f0cfbcdb2e4285ef65191cbbf1e3146e1 /xibuilds/pkg-config.xibuild
parentd4cb1386d79c95e7586e7bccad5b0f6c7861cfe8 (diff)
moved xibuilds to another repo
Diffstat (limited to 'xibuilds/pkg-config.xibuild')
-rw-r--r--xibuilds/pkg-config.xibuild16
1 files changed, 0 insertions, 16 deletions
diff --git a/xibuilds/pkg-config.xibuild b/xibuilds/pkg-config.xibuild
deleted file mode 100644
index 0b5de5a..0000000
--- a/xibuilds/pkg-config.xibuild
+++ /dev/null
@@ -1,16 +0,0 @@
-#!/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
-}