[arch-commits] Commit in pkgconf/repos (3 files)

2019-07-21 Thread Bartłomiej Piotrowski via arch-commits
Date: Sunday, July 21, 2019 @ 10:05:35
  Author: bpiotrowski
Revision: 358463

archrelease: copy trunk to testing-x86_64

Added:
  pkgconf/repos/testing-x86_64/
  pkgconf/repos/testing-x86_64/PKGBUILD
(from rev 358461, pkgconf/trunk/PKGBUILD)
  pkgconf/repos/testing-x86_64/platform-pkg-config.in
(from rev 358461, pkgconf/trunk/platform-pkg-config.in)

+
 PKGBUILD   |   80 +++
 platform-pkg-config.in |   11 ++
 2 files changed, 91 insertions(+)

Copied: pkgconf/repos/testing-x86_64/PKGBUILD (from rev 358461, 
pkgconf/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2019-07-21 10:05:35 UTC (rev 358463)
@@ -0,0 +1,80 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Johannes Löthberg 
+# Contributor: Piotr Gorski 
+# Contributor: Lucy 
+# Contributor: Bartlomiej Piotrowski 
+
+pkgname=pkgconf
+pkgver=1.6.3
+pkgrel=1
+pkgdesc="Package compiler and linker metadata toolkit"
+url="https://github.com/pkgconf/pkgconf;
+license=(custom:ISC)
+arch=(x86_64)
+depends=(glibc sh)
+makedepends=(git)
+provides=(pkg-config pkgconfig)
+conflicts=(pkg-config)
+replaces=(pkg-config)
+groups=(base-devel)
+_commit=c862e030cf83447f679e4f49876f5298f0fc9691  # tags/pkgconf-1.6.3
+source=("git+https://git.dereferenced.org/pkgconf/pkgconf#commit=$_commit; 
platform-pkg-config.in)
+sha256sums=('SKIP'
+'7c61338fbd83f9783d805c2f2f97b426977895a2f4b79e0ae5bc8e9d7996edaa')
+
+_pcdirs=/usr/lib/pkgconfig:/usr/share/pkgconfig
+_libdir=/usr/lib
+_includedir=/usr/include
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/^pkgconf-//;s/-/+/g'
+}
+
+prepare() {
+  mkdir build
+  cd $pkgname
+  ./autogen.sh
+}
+
+build() {
+  cd build
+  ../$pkgname/configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--with-pkg-config-dir="$_pcdirs" \
+--with-system-libdir="$_libdir" \
+--with-system-includedir="$_includedir" \
+--disable-static
+  make
+}
+
+package() {
+  DESTDIR="$pkgdir" make -C build install
+
+  # From https://src.fedoraproject.org/rpms/pkgconf/
+  sed -e "s|@TARGET_PLATFORM@|$CHOST|g" \
+  -e "s|@PKGCONF_LIBDIRS@|$_pcdirs|g" \
+  -e "s|@PKGCONF_SYSLIBDIR@|$_libdir|g" \
+  -e "s|@PKGCONF_SYSINCDIR@|$_includedir|g" \
+  platform-pkg-config.in |
+install -D /dev/stdin "$pkgdir/usr/bin/$CHOST-pkg-config"
+  ln -s $CHOST-pkg-config "$pkgdir/usr/bin/pkg-config"
+
+  # Multilib
+  if [[ $CARCH = x86_64 ]]; then
+_host32=${CHOST/x86_64/i686}
+sed -e "s|@TARGET_PLATFORM@|$_host32|g" \
+-e "s|@PKGCONF_LIBDIRS@|${_pcdirs/lib/lib32}|g" \
+-e "s|@PKGCONF_SYSLIBDIR@|${_libdir/lib/lib32}|g" \
+-e "s|@PKGCONF_SYSINCDIR@|$_includedir|g" \
+platform-pkg-config.in |
+  install -D /dev/stdin "$pkgdir/usr/bin/$_host32-pkg-config"
+ln -s $_host32-pkg-config "$pkgdir/usr/bin/pkg-config-32"
+  fi
+
+  ln -s pkgconf.1 "$pkgdir/usr/share/man/man1/pkg-config.1"
+  install -Dt "$pkgdir/usr/share/licenses/$pkgname" -m644 $pkgname/COPYING
+}
+
+# vim:set sw=2 et:

Copied: pkgconf/repos/testing-x86_64/platform-pkg-config.in (from rev 358461, 
pkgconf/trunk/platform-pkg-config.in)
===
--- testing-x86_64/platform-pkg-config.in   (rev 0)
+++ testing-x86_64/platform-pkg-config.in   2019-07-21 10:05:35 UTC (rev 
358463)
@@ -0,0 +1,11 @@
+#!/bin/sh
+
+# Simple wrapper to tell pkgconf to behave as a platform-specific version of 
pkg-config
+# Platform: @TARGET_PLATFORM@
+
+: ${PKG_CONFIG_LIBDIR=@PKGCONF_LIBDIRS@}
+: ${PKG_CONFIG_SYSTEM_LIBRARY_PATH=@PKGCONF_SYSLIBDIR@} 
+: ${PKG_CONFIG_SYSTEM_INCLUDE_PATH=@PKGCONF_SYSINCDIR@}
+export PKG_CONFIG_LIBDIR PKG_CONFIG_SYSTEM_LIBRARY_PATH 
PKG_CONFIG_SYSTEM_INCLUDE_PATH
+
+exec pkgconf "$@"


[arch-commits] Commit in pkgconf/repos (3 files)

2019-03-25 Thread Johannes Löthberg via arch-commits
Date: Monday, March 25, 2019 @ 21:50:09
  Author: demize
Revision: 349190

archrelease: copy trunk to testing-x86_64

Added:
  pkgconf/repos/testing-x86_64/
  pkgconf/repos/testing-x86_64/PKGBUILD
(from rev 349189, pkgconf/trunk/PKGBUILD)
  pkgconf/repos/testing-x86_64/platform-pkg-config.in
(from rev 349189, pkgconf/trunk/platform-pkg-config.in)

+
 PKGBUILD   |   80 +++
 platform-pkg-config.in |   11 ++
 2 files changed, 91 insertions(+)

Copied: pkgconf/repos/testing-x86_64/PKGBUILD (from rev 349189, 
pkgconf/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2019-03-25 21:50:09 UTC (rev 349190)
@@ -0,0 +1,80 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Johannes Löthberg 
+# Contributor: Piotr Gorski 
+# Contributor: Lucy 
+# Contributor: Bartlomiej Piotrowski 
+
+pkgname=pkgconf
+pkgver=1.6.1
+pkgrel=1
+pkgdesc="Package compiler and linker metadata toolkit"
+url="https://github.com/pkgconf/pkgconf;
+license=(custom:ISC)
+arch=(x86_64)
+depends=(glibc sh)
+makedepends=(git)
+provides=(pkg-config pkgconfig)
+conflicts=(pkg-config)
+replaces=(pkg-config)
+groups=(base-devel)
+_commit=be6011222b52db362d2a4fdf602b4e4928b5317b  # tags/pkgconf-1.6.1
+source=("git+https://git.dereferenced.org/pkgconf/pkgconf#commit=$_commit; 
platform-pkg-config.in)
+sha256sums=('SKIP'
+'7c61338fbd83f9783d805c2f2f97b426977895a2f4b79e0ae5bc8e9d7996edaa')
+
+_pcdirs=/usr/lib/pkgconfig:/usr/share/pkgconfig
+_libdir=/usr/lib
+_includedir=/usr/include
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/^pkgconf-//;s/-/+/g'
+}
+
+prepare() {
+  mkdir build
+  cd $pkgname
+  ./autogen.sh
+}
+
+build() {
+  cd build
+  ../$pkgname/configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--with-pkg-config-dir="$_pcdirs" \
+--with-system-libdir="$_libdir" \
+--with-system-includedir="$_includedir" \
+--disable-static
+  make
+}
+
+package() {
+  DESTDIR="$pkgdir" make -C build install
+
+  # From https://src.fedoraproject.org/rpms/pkgconf/
+  sed -e "s|@TARGET_PLATFORM@|$CHOST|g" \
+  -e "s|@PKGCONF_LIBDIRS@|$_pcdirs|g" \
+  -e "s|@PKGCONF_SYSLIBDIR@|$_libdir|g" \
+  -e "s|@PKGCONF_SYSINCDIR@|$_includedir|g" \
+  platform-pkg-config.in |
+install -D /dev/stdin "$pkgdir/usr/bin/$CHOST-pkg-config"
+  ln -s $CHOST-pkg-config "$pkgdir/usr/bin/pkg-config"
+
+  # Multilib
+  if [[ $CARCH = x86_64 ]]; then
+_host32=${CHOST/x86_64/i686}
+sed -e "s|@TARGET_PLATFORM@|$_host32|g" \
+-e "s|@PKGCONF_LIBDIRS@|${_pcdirs/lib/lib32}|g" \
+-e "s|@PKGCONF_SYSLIBDIR@|${_libdir/lib/lib32}|g" \
+-e "s|@PKGCONF_SYSINCDIR@|$_includedir|g" \
+platform-pkg-config.in |
+  install -D /dev/stdin "$pkgdir/usr/bin/$_host32-pkg-config"
+ln -s $_host32-pkg-config "$pkgdir/usr/bin/pkg-config-32"
+  fi
+
+  ln -s pkgconf.1 "$pkgdir/usr/share/man/man1/pkg-config.1"
+  install -Dt "$pkgdir/usr/share/licenses/$pkgname" -m644 $pkgname/COPYING
+}
+
+# vim:set sw=2 et:

Copied: pkgconf/repos/testing-x86_64/platform-pkg-config.in (from rev 349189, 
pkgconf/trunk/platform-pkg-config.in)
===
--- testing-x86_64/platform-pkg-config.in   (rev 0)
+++ testing-x86_64/platform-pkg-config.in   2019-03-25 21:50:09 UTC (rev 
349190)
@@ -0,0 +1,11 @@
+#!/bin/sh
+
+# Simple wrapper to tell pkgconf to behave as a platform-specific version of 
pkg-config
+# Platform: @TARGET_PLATFORM@
+
+: ${PKG_CONFIG_LIBDIR=@PKGCONF_LIBDIRS@}
+: ${PKG_CONFIG_SYSTEM_LIBRARY_PATH=@PKGCONF_SYSLIBDIR@} 
+: ${PKG_CONFIG_SYSTEM_INCLUDE_PATH=@PKGCONF_SYSINCDIR@}
+export PKG_CONFIG_LIBDIR PKG_CONFIG_SYSTEM_LIBRARY_PATH 
PKG_CONFIG_SYSTEM_INCLUDE_PATH
+
+exec pkgconf "$@"


[arch-commits] Commit in pkgconf/repos (3 files)

2019-03-25 Thread Johannes Löthberg via arch-commits
Date: Monday, March 25, 2019 @ 21:38:50
  Author: demize
Revision: 349187

archrelease: copy trunk to testing-x86_64

Added:
  pkgconf/repos/testing-x86_64/
  pkgconf/repos/testing-x86_64/PKGBUILD
(from rev 349186, pkgconf/trunk/PKGBUILD)
  pkgconf/repos/testing-x86_64/platform-pkg-config.in
(from rev 349186, pkgconf/trunk/platform-pkg-config.in)

+
 PKGBUILD   |   80 +++
 platform-pkg-config.in |   11 ++
 2 files changed, 91 insertions(+)

Copied: pkgconf/repos/testing-x86_64/PKGBUILD (from rev 349186, 
pkgconf/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2019-03-25 21:38:50 UTC (rev 349187)
@@ -0,0 +1,80 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Johannes Löthberg 
+# Contributor: Piotr Gorski 
+# Contributor: Lucy 
+# Contributor: Bartlomiej Piotrowski 
+
+pkgname=pkgconf
+pkgver=1.6.0
+pkgrel=1
+pkgdesc="Package compiler and linker metadata toolkit"
+url="https://github.com/pkgconf/pkgconf;
+license=(custom:ISC)
+arch=(x86_64)
+depends=(glibc sh)
+makedepends=(git)
+provides=(pkg-config pkgconfig)
+conflicts=(pkg-config)
+replaces=(pkg-config)
+groups=(base-devel)
+_commit=e2fdd6f47020bdfa670225d6f0763b082a419f91  # tags/pkgconf-1.6.0
+source=("git+https://github.com/pkgconf/pkgconf#commit=$_commit; 
platform-pkg-config.in)
+sha256sums=('SKIP'
+'7c61338fbd83f9783d805c2f2f97b426977895a2f4b79e0ae5bc8e9d7996edaa')
+
+_pcdirs=/usr/lib/pkgconfig:/usr/share/pkgconfig
+_libdir=/usr/lib
+_includedir=/usr/include
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/^pkgconf-//;s/-/+/g'
+}
+
+prepare() {
+  mkdir build
+  cd $pkgname
+  ./autogen.sh
+}
+
+build() {
+  cd build
+  ../$pkgname/configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--with-pkg-config-dir="$_pcdirs" \
+--with-system-libdir="$_libdir" \
+--with-system-includedir="$_includedir" \
+--disable-static
+  make
+}
+
+package() {
+  DESTDIR="$pkgdir" make -C build install
+
+  # From https://src.fedoraproject.org/rpms/pkgconf/
+  sed -e "s|@TARGET_PLATFORM@|$CHOST|g" \
+  -e "s|@PKGCONF_LIBDIRS@|$_pcdirs|g" \
+  -e "s|@PKGCONF_SYSLIBDIR@|$_libdir|g" \
+  -e "s|@PKGCONF_SYSINCDIR@|$_includedir|g" \
+  platform-pkg-config.in |
+install -D /dev/stdin "$pkgdir/usr/bin/$CHOST-pkg-config"
+  ln -s $CHOST-pkg-config "$pkgdir/usr/bin/pkg-config"
+
+  # Multilib
+  if [[ $CARCH = x86_64 ]]; then
+_host32=${CHOST/x86_64/i686}
+sed -e "s|@TARGET_PLATFORM@|$_host32|g" \
+-e "s|@PKGCONF_LIBDIRS@|${_pcdirs/lib/lib32}|g" \
+-e "s|@PKGCONF_SYSLIBDIR@|${_libdir/lib/lib32}|g" \
+-e "s|@PKGCONF_SYSINCDIR@|$_includedir|g" \
+platform-pkg-config.in |
+  install -D /dev/stdin "$pkgdir/usr/bin/$_host32-pkg-config"
+ln -s $_host32-pkg-config "$pkgdir/usr/bin/pkg-config-32"
+  fi
+
+  ln -s pkgconf.1 "$pkgdir/usr/share/man/man1/pkg-config.1"
+  install -Dt "$pkgdir/usr/share/licenses/$pkgname" -m644 $pkgname/COPYING
+}
+
+# vim:set sw=2 et:

Copied: pkgconf/repos/testing-x86_64/platform-pkg-config.in (from rev 349186, 
pkgconf/trunk/platform-pkg-config.in)
===
--- testing-x86_64/platform-pkg-config.in   (rev 0)
+++ testing-x86_64/platform-pkg-config.in   2019-03-25 21:38:50 UTC (rev 
349187)
@@ -0,0 +1,11 @@
+#!/bin/sh
+
+# Simple wrapper to tell pkgconf to behave as a platform-specific version of 
pkg-config
+# Platform: @TARGET_PLATFORM@
+
+: ${PKG_CONFIG_LIBDIR=@PKGCONF_LIBDIRS@}
+: ${PKG_CONFIG_SYSTEM_LIBRARY_PATH=@PKGCONF_SYSLIBDIR@} 
+: ${PKG_CONFIG_SYSTEM_INCLUDE_PATH=@PKGCONF_SYSINCDIR@}
+export PKG_CONFIG_LIBDIR PKG_CONFIG_SYSTEM_LIBRARY_PATH 
PKG_CONFIG_SYSTEM_INCLUDE_PATH
+
+exec pkgconf "$@"


[arch-commits] Commit in pkgconf/repos (3 files)

2019-01-14 Thread Johannes Löthberg via arch-commits
Date: Monday, January 14, 2019 @ 21:04:51
  Author: demize
Revision: 344082

archrelease: copy trunk to testing-x86_64

Added:
  pkgconf/repos/testing-x86_64/
  pkgconf/repos/testing-x86_64/PKGBUILD
(from rev 344081, pkgconf/trunk/PKGBUILD)
  pkgconf/repos/testing-x86_64/platform-pkg-config.in
(from rev 344081, pkgconf/trunk/platform-pkg-config.in)

+
 PKGBUILD   |   80 +++
 platform-pkg-config.in |   11 ++
 2 files changed, 91 insertions(+)

Copied: pkgconf/repos/testing-x86_64/PKGBUILD (from rev 344081, 
pkgconf/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2019-01-14 21:04:51 UTC (rev 344082)
@@ -0,0 +1,80 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Johannes Löthberg 
+# Contributor: Piotr Gorski 
+# Contributor: Lucy 
+# Contributor: Bartlomiej Piotrowski 
+
+pkgname=pkgconf
+pkgver=1.6.0
+pkgrel=1
+pkgdesc="Package compiler and linker metadata toolkit"
+url="https://github.com/pkgconf/pkgconf;
+license=(custom:ISC)
+arch=(x86_64)
+depends=(glibc sh)
+makedepends=(git)
+provides=(pkg-config pkgconfig)
+conflicts=(pkg-config)
+replaces=(pkg-config)
+groups=(base-devel)
+_commit=e2fdd6f47020bdfa670225d6f0763b082a419f91  # tags/pkgconf-1.6.0
+source=("git+https://github.com/pkgconf/pkgconf#commit=$_commit; 
platform-pkg-config.in)
+sha256sums=('SKIP'
+'7c61338fbd83f9783d805c2f2f97b426977895a2f4b79e0ae5bc8e9d7996edaa')
+
+_pcdirs=/usr/lib/pkgconfig:/usr/share/pkgconfig
+_libdir=/usr/lib
+_includedir=/usr/include
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/^pkgconf-//;s/-/+/g'
+}
+
+prepare() {
+  mkdir build
+  cd $pkgname
+  ./autogen.sh
+}
+
+build() {
+  cd build
+  ../$pkgname/configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--with-pkg-config-dir="$_pcdirs" \
+--with-system-libdir="$_libdir" \
+--with-system-includedir="$_includedir" \
+--disable-static
+  make
+}
+
+package() {
+  DESTDIR="$pkgdir" make -C build install
+
+  # From https://src.fedoraproject.org/rpms/pkgconf/
+  sed -e "s|@TARGET_PLATFORM@|$CHOST|g" \
+  -e "s|@PKGCONF_LIBDIRS@|$_pcdirs|g" \
+  -e "s|@PKGCONF_SYSLIBDIR@|$_libdir|g" \
+  -e "s|@PKGCONF_SYSINCDIR@|$_includedir|g" \
+  platform-pkg-config.in |
+install -D /dev/stdin "$pkgdir/usr/bin/$CHOST-pkg-config"
+  ln -s $CHOST-pkg-config "$pkgdir/usr/bin/pkg-config"
+
+  # Multilib
+  if [[ $CARCH = x86_64 ]]; then
+_host32=${CHOST/x86_64/i686}
+sed -e "s|@TARGET_PLATFORM@|$_host32|g" \
+-e "s|@PKGCONF_LIBDIRS@|${_pcdirs/lib/lib32}|g" \
+-e "s|@PKGCONF_SYSLIBDIR@|${_libdir/lib/lib32}|g" \
+-e "s|@PKGCONF_SYSINCDIR@|$_includedir|g" \
+platform-pkg-config.in |
+  install -D /dev/stdin "$pkgdir/usr/bin/$_host32-pkg-config"
+ln -s $_host32-pkg-config "$pkgdir/usr/bin/pkg-config-32"
+  fi
+
+  ln -s pkgconf.1 "$pkgdir/usr/share/man/man1/pkg-config.1"
+  install -Dt "$pkgdir/usr/share/licenses/$pkgname" -m644 $pkgname/COPYING
+}
+
+# vim:set sw=2 et:

Copied: pkgconf/repos/testing-x86_64/platform-pkg-config.in (from rev 344081, 
pkgconf/trunk/platform-pkg-config.in)
===
--- testing-x86_64/platform-pkg-config.in   (rev 0)
+++ testing-x86_64/platform-pkg-config.in   2019-01-14 21:04:51 UTC (rev 
344082)
@@ -0,0 +1,11 @@
+#!/bin/sh
+
+# Simple wrapper to tell pkgconf to behave as a platform-specific version of 
pkg-config
+# Platform: @TARGET_PLATFORM@
+
+: ${PKG_CONFIG_LIBDIR=@PKGCONF_LIBDIRS@}
+: ${PKG_CONFIG_SYSTEM_LIBRARY_PATH=@PKGCONF_SYSLIBDIR@} 
+: ${PKG_CONFIG_SYSTEM_INCLUDE_PATH=@PKGCONF_SYSINCDIR@}
+export PKG_CONFIG_LIBDIR PKG_CONFIG_SYSTEM_LIBRARY_PATH 
PKG_CONFIG_SYSTEM_INCLUDE_PATH
+
+exec pkgconf "$@"


[arch-commits] Commit in pkgconf/repos (3 files)

2018-10-20 Thread Bartłomiej Piotrowski via arch-commits
Date: Saturday, October 20, 2018 @ 20:15:59
  Author: bpiotrowski
Revision: 336915

archrelease: copy trunk to testing-x86_64

Added:
  pkgconf/repos/testing-x86_64/
  pkgconf/repos/testing-x86_64/PKGBUILD
(from rev 336914, pkgconf/trunk/PKGBUILD)
  pkgconf/repos/testing-x86_64/platform-pkg-config.in
(from rev 336914, pkgconf/trunk/platform-pkg-config.in)

+
 PKGBUILD   |   80 +++
 platform-pkg-config.in |   11 ++
 2 files changed, 91 insertions(+)

Copied: pkgconf/repos/testing-x86_64/PKGBUILD (from rev 336914, 
pkgconf/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2018-10-20 20:15:59 UTC (rev 336915)
@@ -0,0 +1,80 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Johannes Löthberg 
+# Contributor: Piotr Gorski 
+# Contributor: Lucy 
+# Contributor: Bartlomiej Piotrowski 
+
+pkgname=pkgconf
+pkgver=1.5.4
+pkgrel=1
+pkgdesc="Package compiler and linker metadata toolkit"
+url="https://github.com/pkgconf/pkgconf;
+license=(custom:ISC)
+arch=(x86_64)
+depends=(glibc sh)
+makedepends=(git)
+provides=(pkg-config pkgconfig)
+conflicts=(pkg-config)
+replaces=(pkg-config)
+groups=(base-devel)
+_commit=74133eda31bc1ed5947b4a3a854001e320b6c1fe  # tags/pkgconf-1.5.4
+source=("git+https://github.com/pkgconf/pkgconf#commit=$_commit; 
platform-pkg-config.in)
+sha256sums=('SKIP'
+'7c61338fbd83f9783d805c2f2f97b426977895a2f4b79e0ae5bc8e9d7996edaa')
+
+_pcdirs=/usr/lib/pkgconfig:/usr/share/pkgconfig
+_libdir=/usr/lib
+_includedir=/usr/include
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/^pkgconf-//;s/-/+/g'
+}
+
+prepare() {
+  mkdir build
+  cd $pkgname
+  ./autogen.sh
+}
+
+build() {
+  cd build
+  ../$pkgname/configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--with-pkg-config-dir="$_pcdirs" \
+--with-system-libdir="$_libdir" \
+--with-system-includedir="$_includedir" \
+--disable-static
+  make
+}
+
+package() {
+  DESTDIR="$pkgdir" make -C build install
+
+  # From https://src.fedoraproject.org/rpms/pkgconf/
+  sed -e "s|@TARGET_PLATFORM@|$CHOST|g" \
+  -e "s|@PKGCONF_LIBDIRS@|$_pcdirs|g" \
+  -e "s|@PKGCONF_SYSLIBDIR@|$_libdir|g" \
+  -e "s|@PKGCONF_SYSINCDIR@|$_includedir|g" \
+  platform-pkg-config.in |
+install -D /dev/stdin "$pkgdir/usr/bin/$CHOST-pkg-config"
+  ln -s $CHOST-pkg-config "$pkgdir/usr/bin/pkg-config"
+
+  # Multilib
+  if [[ $CARCH = x86_64 ]]; then
+_host32=${CHOST/x86_64/i686}
+sed -e "s|@TARGET_PLATFORM@|$_host32|g" \
+-e "s|@PKGCONF_LIBDIRS@|${_pcdirs/lib/lib32}|g" \
+-e "s|@PKGCONF_SYSLIBDIR@|${_libdir/lib/lib32}|g" \
+-e "s|@PKGCONF_SYSINCDIR@|$_includedir|g" \
+platform-pkg-config.in |
+  install -D /dev/stdin "$pkgdir/usr/bin/$_host32-pkg-config"
+ln -s $_host32-pkg-config "$pkgdir/usr/bin/pkg-config-32"
+  fi
+
+  ln -s pkgconf.1 "$pkgdir/usr/share/man/man1/pkg-config.1"
+  install -Dt "$pkgdir/usr/share/licenses/$pkgname" -m644 $pkgname/COPYING
+}
+
+# vim:set sw=2 et:

Copied: pkgconf/repos/testing-x86_64/platform-pkg-config.in (from rev 336914, 
pkgconf/trunk/platform-pkg-config.in)
===
--- testing-x86_64/platform-pkg-config.in   (rev 0)
+++ testing-x86_64/platform-pkg-config.in   2018-10-20 20:15:59 UTC (rev 
336915)
@@ -0,0 +1,11 @@
+#!/bin/sh
+
+# Simple wrapper to tell pkgconf to behave as a platform-specific version of 
pkg-config
+# Platform: @TARGET_PLATFORM@
+
+: ${PKG_CONFIG_LIBDIR=@PKGCONF_LIBDIRS@}
+: ${PKG_CONFIG_SYSTEM_LIBRARY_PATH=@PKGCONF_SYSLIBDIR@} 
+: ${PKG_CONFIG_SYSTEM_INCLUDE_PATH=@PKGCONF_SYSINCDIR@}
+export PKG_CONFIG_LIBDIR PKG_CONFIG_SYSTEM_LIBRARY_PATH 
PKG_CONFIG_SYSTEM_INCLUDE_PATH
+
+exec pkgconf "$@"


[arch-commits] Commit in pkgconf/repos (3 files)

2018-07-29 Thread Jan Steffens via arch-commits
Date: Sunday, July 29, 2018 @ 17:37:00
  Author: heftig
Revision: 329665

archrelease: copy trunk to testing-x86_64

Added:
  pkgconf/repos/testing-x86_64/
  pkgconf/repos/testing-x86_64/PKGBUILD
(from rev 329664, pkgconf/trunk/PKGBUILD)
  pkgconf/repos/testing-x86_64/platform-pkg-config.in
(from rev 329664, pkgconf/trunk/platform-pkg-config.in)

+
 PKGBUILD   |   81 +++
 platform-pkg-config.in |   11 ++
 2 files changed, 92 insertions(+)

Copied: pkgconf/repos/testing-x86_64/PKGBUILD (from rev 329664, 
pkgconf/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2018-07-29 17:37:00 UTC (rev 329665)
@@ -0,0 +1,81 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Johannes Löthberg 
+# Contributor: Piotr Gorski 
+# Contributor: Lucy 
+# Contributor: Bartlomiej Piotrowski 
+
+pkgname=pkgconf
+pkgver=1.5.3
+pkgrel=1
+pkgdesc="Package compiler and linker metadata toolkit"
+url="https://git.dereferenced.org/pkgconf/pkgconf;
+license=(custom:ISC)
+arch=(x86_64)
+depends=(glibc sh)
+makedepends=(git)
+provides=(pkg-config pkgconfig)
+conflicts=(pkg-config)
+replaces=(pkg-config)
+groups=(base-devel)
+_commit=101b99b5b59d58fe6c6dc46ae22edb049cc0bd3a  # tags/pkgconf-1.5.3
+source=("git+$url#commit=$_commit" platform-pkg-config.in)
+sha256sums=('SKIP'
+'7c61338fbd83f9783d805c2f2f97b426977895a2f4b79e0ae5bc8e9d7996edaa')
+
+_pcdirs=/usr/lib/pkgconfig:/usr/share/pkgconfig
+_libdir=/usr/lib
+_includedir=/usr/include
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/^pkgconf-//;s/-/+/g'
+}
+
+prepare() {
+  mkdir build
+  cd $pkgname
+  ./autogen.sh
+}
+
+build() {
+  cd build
+  ../$pkgname/configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--with-pkg-config-dir="$_pcdirs" \
+--with-system-libdir="$_libdir" \
+--with-system-includedir="$_includedir" \
+--disable-static
+  make
+}
+
+package() {
+  DESTDIR="$pkgdir" make -C build install
+
+  # From https://src.fedoraproject.org/rpms/pkgconf/
+  sed -e "s|@TARGET_PLATFORM@|$CHOST|g" \
+  -e "s|@PKGCONF_LIBDIRS@|$_pcdirs|g" \
+  -e "s|@PKGCONF_SYSLIBDIR@|$_libdir|g" \
+  -e "s|@PKGCONF_SYSINCDIR@|$_includedir|g" \
+  platform-pkg-config.in |
+install -D /dev/stdin "$pkgdir/usr/bin/$CHOST-pkg-config"
+  ln -s $CHOST-pkg-config "$pkgdir/usr/bin/pkg-config"
+
+  # Multilib
+  if [[ $CARCH = x86_64 ]]; then
+_host32=${CHOST/x86_64/i686}
+sed -e "s|@TARGET_PLATFORM@|$_host32|g" \
+-e "s|@PKGCONF_LIBDIRS@|${_pcdirs/lib/lib32}|g" \
+-e "s|@PKGCONF_SYSLIBDIR@|${_libdir/lib/lib32}|g" \
+-e "s|@PKGCONF_SYSINCDIR@|$_includedir|g" \
+platform-pkg-config.in |
+  install -D /dev/stdin "$pkgdir/usr/bin/$_host32-pkg-config"
+ln -s $_host32-pkg-config "$pkgdir/usr/bin/pkg-config-32"
+  fi
+
+  ln -s pkgconf.1 "$pkgdir/usr/share/man/man1/pkg-config.1"
+  install -Dt "$pkgdir/usr/share/licenses/$pkgname" -m644 $pkgname/COPYING
+}
+
+# vim:set sw=2 et:

Copied: pkgconf/repos/testing-x86_64/platform-pkg-config.in (from rev 329664, 
pkgconf/trunk/platform-pkg-config.in)
===
--- testing-x86_64/platform-pkg-config.in   (rev 0)
+++ testing-x86_64/platform-pkg-config.in   2018-07-29 17:37:00 UTC (rev 
329665)
@@ -0,0 +1,11 @@
+#!/bin/sh
+
+# Simple wrapper to tell pkgconf to behave as a platform-specific version of 
pkg-config
+# Platform: @TARGET_PLATFORM@
+
+: ${PKG_CONFIG_LIBDIR=@PKGCONF_LIBDIRS@}
+: ${PKG_CONFIG_SYSTEM_LIBRARY_PATH=@PKGCONF_SYSLIBDIR@} 
+: ${PKG_CONFIG_SYSTEM_INCLUDE_PATH=@PKGCONF_SYSINCDIR@}
+export PKG_CONFIG_LIBDIR PKG_CONFIG_SYSTEM_LIBRARY_PATH 
PKG_CONFIG_SYSTEM_INCLUDE_PATH
+
+exec pkgconf "$@"


[arch-commits] Commit in pkgconf/repos (3 files)

2018-07-25 Thread Johannes Löthberg via arch-commits
Date: Wednesday, July 25, 2018 @ 18:40:52
  Author: demize
Revision: 329543

archrelease: copy trunk to extra-x86_64

Added:
  pkgconf/repos/extra-x86_64/
  pkgconf/repos/extra-x86_64/PKGBUILD
(from rev 329542, pkgconf/trunk/PKGBUILD)
  pkgconf/repos/extra-x86_64/platform-pkg-config.in
(from rev 329542, pkgconf/trunk/platform-pkg-config.in)

+
 PKGBUILD   |   81 +++
 platform-pkg-config.in |   11 ++
 2 files changed, 92 insertions(+)

Copied: pkgconf/repos/extra-x86_64/PKGBUILD (from rev 329542, 
pkgconf/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2018-07-25 18:40:52 UTC (rev 329543)
@@ -0,0 +1,81 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Johannes Löthberg 
+# Contributor: Piotr Gorski 
+# Contributor: Lucy 
+# Contributor: Bartlomiej Piotrowski 
+
+pkgname=pkgconf
+pkgver=1.5.2
+pkgrel=1
+pkgdesc="Package compiler and linker metadata toolkit"
+url="https://git.dereferenced.org/pkgconf/pkgconf;
+license=(custom:ISC)
+arch=(x86_64)
+depends=(glibc sh)
+makedepends=(git)
+provides=(pkg-config pkgconfig)
+conflicts=(pkg-config)
+replaces=(pkg-config)
+groups=(base-devel)
+_commit=4735e17287003b24e86b909f473af14771b8b32c  # tags/pkgconf-1.5.2
+source=("git+$url#commit=$_commit" platform-pkg-config.in)
+sha256sums=('SKIP'
+'7c61338fbd83f9783d805c2f2f97b426977895a2f4b79e0ae5bc8e9d7996edaa')
+
+_pcdirs=/usr/lib/pkgconfig:/usr/share/pkgconfig
+_libdir=/usr/lib
+_includedir=/usr/include
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/^pkgconf-//;s/-/+/g'
+}
+
+prepare() {
+  mkdir build
+  cd $pkgname
+  ./autogen.sh
+}
+
+build() {
+  cd build
+  ../$pkgname/configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--with-pkg-config-dir="$_pcdirs" \
+--with-system-libdir="$_libdir" \
+--with-system-includedir="$_includedir" \
+--disable-static
+  make
+}
+
+package() {
+  DESTDIR="$pkgdir" make -C build install
+
+  # From https://src.fedoraproject.org/rpms/pkgconf/
+  sed -e "s|@TARGET_PLATFORM@|$CHOST|g" \
+  -e "s|@PKGCONF_LIBDIRS@|$_pcdirs|g" \
+  -e "s|@PKGCONF_SYSLIBDIR@|$_libdir|g" \
+  -e "s|@PKGCONF_SYSINCDIR@|$_includedir|g" \
+  platform-pkg-config.in |
+install -D /dev/stdin "$pkgdir/usr/bin/$CHOST-pkg-config"
+  ln -s $CHOST-pkg-config "$pkgdir/usr/bin/pkg-config"
+
+  # Multilib
+  if [[ $CARCH = x86_64 ]]; then
+_host32=${CHOST/x86_64/i686}
+sed -e "s|@TARGET_PLATFORM@|$_host32|g" \
+-e "s|@PKGCONF_LIBDIRS@|${_pcdirs/lib/lib32}|g" \
+-e "s|@PKGCONF_SYSLIBDIR@|${_libdir/lib/lib32}|g" \
+-e "s|@PKGCONF_SYSINCDIR@|$_includedir|g" \
+platform-pkg-config.in |
+  install -D /dev/stdin "$pkgdir/usr/bin/$_host32-pkg-config"
+ln -s $_host32-pkg-config "$pkgdir/usr/bin/pkg-config-32"
+  fi
+
+  ln -s pkgconf.1 "$pkgdir/usr/share/man/man1/pkg-config.1"
+  install -Dt "$pkgdir/usr/share/licenses/$pkgname" -m644 $pkgname/COPYING
+}
+
+# vim:set sw=2 et:

Copied: pkgconf/repos/extra-x86_64/platform-pkg-config.in (from rev 329542, 
pkgconf/trunk/platform-pkg-config.in)
===
--- extra-x86_64/platform-pkg-config.in (rev 0)
+++ extra-x86_64/platform-pkg-config.in 2018-07-25 18:40:52 UTC (rev 329543)
@@ -0,0 +1,11 @@
+#!/bin/sh
+
+# Simple wrapper to tell pkgconf to behave as a platform-specific version of 
pkg-config
+# Platform: @TARGET_PLATFORM@
+
+: ${PKG_CONFIG_LIBDIR=@PKGCONF_LIBDIRS@}
+: ${PKG_CONFIG_SYSTEM_LIBRARY_PATH=@PKGCONF_SYSLIBDIR@} 
+: ${PKG_CONFIG_SYSTEM_INCLUDE_PATH=@PKGCONF_SYSINCDIR@}
+export PKG_CONFIG_LIBDIR PKG_CONFIG_SYSTEM_LIBRARY_PATH 
PKG_CONFIG_SYSTEM_INCLUDE_PATH
+
+exec pkgconf "$@"


[arch-commits] Commit in pkgconf/repos (3 files)

2018-06-18 Thread Jan Steffens via arch-commits
Date: Monday, June 18, 2018 @ 08:18:11
  Author: heftig
Revision: 327119

archrelease: copy trunk to testing-x86_64

Added:
  pkgconf/repos/testing-x86_64/
  pkgconf/repos/testing-x86_64/PKGBUILD
(from rev 327118, pkgconf/trunk/PKGBUILD)
  pkgconf/repos/testing-x86_64/platform-pkg-config.in
(from rev 327118, pkgconf/trunk/platform-pkg-config.in)

+
 PKGBUILD   |   81 +++
 platform-pkg-config.in |   11 ++
 2 files changed, 92 insertions(+)

Copied: pkgconf/repos/testing-x86_64/PKGBUILD (from rev 327118, 
pkgconf/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2018-06-18 08:18:11 UTC (rev 327119)
@@ -0,0 +1,81 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Johannes Löthberg 
+# Contributor: Piotr Gorski 
+# Contributor: Lucy 
+# Contributor: Bartlomiej Piotrowski 
+
+pkgname=pkgconf
+pkgver=1.5.1
+pkgrel=1
+pkgdesc="Package compiler and linker metadata toolkit"
+url="https://git.dereferenced.org/pkgconf/pkgconf;
+license=(custom:ISC)
+arch=(x86_64)
+depends=(glibc sh)
+makedepends=(git)
+provides=(pkg-config pkgconfig)
+conflicts=(pkg-config)
+replaces=(pkg-config)
+groups=(base-devel)
+_commit=5601568267939c4890bab9cbd64c30256455f29a  # tags/pkgconf-1.5.1
+source=("git+$url#commit=$_commit" platform-pkg-config.in)
+sha256sums=('SKIP'
+'7c61338fbd83f9783d805c2f2f97b426977895a2f4b79e0ae5bc8e9d7996edaa')
+
+_pcdirs=/usr/lib/pkgconfig:/usr/share/pkgconfig
+_libdir=/usr/lib
+_includedir=/usr/include
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/^pkgconf-//;s/-/+/g'
+}
+
+prepare() {
+  mkdir build
+  cd $pkgname
+  ./autogen.sh
+}
+
+build() {
+  cd build
+  ../$pkgname/configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--with-pkg-config-dir="$_pcdirs" \
+--with-system-libdir="$_libdir" \
+--with-system-includedir="$_includedir" \
+--disable-static
+  make
+}
+
+package() {
+  DESTDIR="$pkgdir" make -C build install
+
+  # From https://src.fedoraproject.org/rpms/pkgconf/
+  sed -e "s|@TARGET_PLATFORM@|$CHOST|g" \
+  -e "s|@PKGCONF_LIBDIRS@|$_pcdirs|g" \
+  -e "s|@PKGCONF_SYSLIBDIR@|$_libdir|g" \
+  -e "s|@PKGCONF_SYSINCDIR@|$_includedir|g" \
+  platform-pkg-config.in |
+install -D /dev/stdin "$pkgdir/usr/bin/$CHOST-pkg-config"
+  ln -s $CHOST-pkg-config "$pkgdir/usr/bin/pkg-config"
+
+  # Multilib
+  if [[ $CARCH = x86_64 ]]; then
+_host32=${CHOST/x86_64/i686}
+sed -e "s|@TARGET_PLATFORM@|$_host32|g" \
+-e "s|@PKGCONF_LIBDIRS@|${_pcdirs/lib/lib32}|g" \
+-e "s|@PKGCONF_SYSLIBDIR@|${_libdir/lib/lib32}|g" \
+-e "s|@PKGCONF_SYSINCDIR@|$_includedir|g" \
+platform-pkg-config.in |
+  install -D /dev/stdin "$pkgdir/usr/bin/$_host32-pkg-config"
+ln -s $_host32-pkg-config "$pkgdir/usr/bin/pkg-config-32"
+  fi
+
+  ln -s pkgconf.1 "$pkgdir/usr/share/man/man1/pkg-config.1"
+  install -Dt "$pkgdir/usr/share/licenses/$pkgname" -m644 $pkgname/COPYING
+}
+
+# vim:set sw=2 et:

Copied: pkgconf/repos/testing-x86_64/platform-pkg-config.in (from rev 327118, 
pkgconf/trunk/platform-pkg-config.in)
===
--- testing-x86_64/platform-pkg-config.in   (rev 0)
+++ testing-x86_64/platform-pkg-config.in   2018-06-18 08:18:11 UTC (rev 
327119)
@@ -0,0 +1,11 @@
+#!/bin/sh
+
+# Simple wrapper to tell pkgconf to behave as a platform-specific version of 
pkg-config
+# Platform: @TARGET_PLATFORM@
+
+: ${PKG_CONFIG_LIBDIR=@PKGCONF_LIBDIRS@}
+: ${PKG_CONFIG_SYSTEM_LIBRARY_PATH=@PKGCONF_SYSLIBDIR@} 
+: ${PKG_CONFIG_SYSTEM_INCLUDE_PATH=@PKGCONF_SYSINCDIR@}
+export PKG_CONFIG_LIBDIR PKG_CONFIG_SYSTEM_LIBRARY_PATH 
PKG_CONFIG_SYSTEM_INCLUDE_PATH
+
+exec pkgconf "$@"


[arch-commits] Commit in pkgconf/repos (3 files)

2018-05-25 Thread Jan Steffens via arch-commits
Date: Friday, May 25, 2018 @ 22:18:17
  Author: heftig
Revision: 324992

archrelease: copy trunk to testing-x86_64

Added:
  pkgconf/repos/testing-x86_64/
  pkgconf/repos/testing-x86_64/PKGBUILD
(from rev 324991, pkgconf/trunk/PKGBUILD)
  pkgconf/repos/testing-x86_64/platform-pkg-config.in
(from rev 324991, pkgconf/trunk/platform-pkg-config.in)

+
 PKGBUILD   |   82 +++
 platform-pkg-config.in |   11 ++
 2 files changed, 93 insertions(+)

Copied: pkgconf/repos/testing-x86_64/PKGBUILD (from rev 324991, 
pkgconf/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2018-05-25 22:18:17 UTC (rev 324992)
@@ -0,0 +1,82 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Johannes Löthberg 
+# Contributor: Piotr Gorski 
+# Contributor: Lucy 
+# Contributor: Bartlomiej Piotrowski 
+
+pkgname=pkgconf
+pkgver=1.4.2
+pkgrel=2
+pkgdesc="Package compiler and linker metadata toolkit"
+url="https://github.com/pkgconf/pkgconf;
+license=(custom:ISC)
+arch=(x86_64)
+depends=(glibc sh)
+makedepends=(git)
+provides=(pkg-config pkgconfig)
+conflicts=(pkg-config)
+replaces=(pkg-config)
+groups=(base-devel)
+_commit=f4137995d9a5f2c5647ff79961cb0c516923faa8  # tags/pkgconf-1.4.2
+source=("git+https://github.com/pkgconf/pkgconf#commit=$_commit;
+platform-pkg-config.in)
+sha256sums=('SKIP'
+'7c61338fbd83f9783d805c2f2f97b426977895a2f4b79e0ae5bc8e9d7996edaa')
+
+_pcdirs=/usr/lib/pkgconfig:/usr/share/pkgconfig
+_libdir=/usr/lib
+_includedir=/usr/include
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/^pkgconf-//;s/-/+/g'
+}
+
+prepare() {
+  mkdir build
+  cd $pkgname
+  ./autogen.sh
+}
+
+build() {
+  cd build
+  ../$pkgname/configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--with-pkg-config-dir="$_pcdirs" \
+--with-system-libdir="$_libdir" \
+--with-system-includedir="$_includedir" \
+--disable-static
+  make
+}
+
+package() {
+  DESTDIR="$pkgdir" make -C build install
+
+  # From https://src.fedoraproject.org/rpms/pkgconf/
+  sed -e "s|@TARGET_PLATFORM@|$CHOST|g" \
+  -e "s|@PKGCONF_LIBDIRS@|$_pcdirs|g" \
+  -e "s|@PKGCONF_SYSLIBDIR@|$_libdir|g" \
+  -e "s|@PKGCONF_SYSINCDIR@|$_includedir|g" \
+  platform-pkg-config.in |
+install -D /dev/stdin "$pkgdir/usr/bin/$CHOST-pkg-config"
+  ln -s $CHOST-pkg-config "$pkgdir/usr/bin/pkg-config"
+
+  # Multilib
+  if [[ $CARCH = x86_64 ]]; then
+_host32=${CHOST/x86_64/i686}
+sed -e "s|@TARGET_PLATFORM@|$_host32|g" \
+-e "s|@PKGCONF_LIBDIRS@|${_pcdirs/lib/lib32}|g" \
+-e "s|@PKGCONF_SYSLIBDIR@|${_libdir/lib/lib32}|g" \
+-e "s|@PKGCONF_SYSINCDIR@|$_includedir|g" \
+platform-pkg-config.in |
+  install -D /dev/stdin "$pkgdir/usr/bin/$_host32-pkg-config"
+ln -s $_host32-pkg-config "$pkgdir/usr/bin/pkg-config-32"
+  fi
+
+  ln -s pkgconf.1 "$pkgdir/usr/share/man/man1/pkg-config.1"
+  install -Dt "$pkgdir/usr/share/licenses/$pkgname" -m644 $pkgname/COPYING
+}
+
+# vim:set sw=2 et:

Copied: pkgconf/repos/testing-x86_64/platform-pkg-config.in (from rev 324991, 
pkgconf/trunk/platform-pkg-config.in)
===
--- testing-x86_64/platform-pkg-config.in   (rev 0)
+++ testing-x86_64/platform-pkg-config.in   2018-05-25 22:18:17 UTC (rev 
324992)
@@ -0,0 +1,11 @@
+#!/bin/sh
+
+# Simple wrapper to tell pkgconf to behave as a platform-specific version of 
pkg-config
+# Platform: @TARGET_PLATFORM@
+
+: ${PKG_CONFIG_LIBDIR=@PKGCONF_LIBDIRS@}
+: ${PKG_CONFIG_SYSTEM_LIBRARY_PATH=@PKGCONF_SYSLIBDIR@} 
+: ${PKG_CONFIG_SYSTEM_INCLUDE_PATH=@PKGCONF_SYSINCDIR@}
+export PKG_CONFIG_LIBDIR PKG_CONFIG_SYSTEM_LIBRARY_PATH 
PKG_CONFIG_SYSTEM_INCLUDE_PATH
+
+exec pkgconf "$@"