summaryrefslogtreecommitdiffhomepage
path: root/009.pkgconf_host.vars
diff options
context:
space:
mode:
authorLucio Andrés Illanes Albornoz (arab, vxp) <l.illanes@gmx.de>2016-07-11 19:51:45 +0000
committerLucio Andrés Illanes Albornoz (arab, vxp) <l.illanes@gmx.de>2016-07-11 19:51:45 +0000
commita163e52b0a679ab954700f82f542280ae7556dad (patch)
treef022d22f1546aa3525b48c996a17f8cbe27bfcbf /009.pkgconf_host.vars
parent49b310339d45f9e4a109d80254006c05069b1563 (diff)
downloadmidipix_build-a163e52b0a679ab954700f82f542280ae7556dad.tar.bz2
midipix_build-a163e52b0a679ab954700f82f542280ae7556dad.tar.xz
Build perk{,_host} w/ pkg.build.
Diffstat (limited to '009.pkgconf_host.vars')
-rw-r--r--009.pkgconf_host.vars19
1 files changed, 0 insertions, 19 deletions
diff --git a/009.pkgconf_host.vars b/009.pkgconf_host.vars
deleted file mode 100644
index 3443633b..00000000
--- a/009.pkgconf_host.vars
+++ /dev/null
@@ -1,19 +0,0 @@
-#
-# . ./build.vars and set -o errexit -o noglob are assumed.
-#
-
-pkg_pkgconf_host_install_post() {
- if [ -e ${PREFIX}/bin/${TARGET}-pkg-config ]; then
- rm -f -- ${PREFIX}/bin/${TARGET}-pkg-config;
- fi;
- cat > ${PREFIX}/bin/${TARGET}-pkg-config <<EOF
-#!/bin/sh
-if [ -z "\${PREFIX_NATIVE}" ]; then
- PREFIX_NATIVE=${PREFIX_NATIVE};
-fi;
-"\$(dirname "\${0}")"/pkgconf --define-variable=prefix=\${PREFIX_NATIVE%/}/ "\$@";
-EOF
- chmod +x ${PREFIX}/bin/${TARGET}-pkg-config;
-};
-
-# vim:filetype=sh