summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 2a3b292930cda3563590103f9db914fe1017f4f3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
pkgname=mingw-w64-pkg-config
pkgver=2
pkgrel=3
pkgdesc='Support pkg-config script (does not depend on any particular version of pkg-config). Useful for pkg-config powered cross-compiling with mingw-w64, see http://tinyurl.com/pkg-config-cross for more info'
arch=('any')
url='http://pkg-config.freedesktop.org/'
license=('zlib')
depends=('pkg-config' 'mingw-w64-crt')
source=('mingw-pkgconfig.sh')
install='mingw-w64-pkg-config.install'
md5sums=('ac8ea293618b2b94d7db14b52db5cf72')

_architectures="i686-w64-mingw32 x86_64-w64-mingw32"

build() {
  for _arch in ${_architectures}; do
    sed "s|@TRIPLE@|${_arch}|g" mingw-pkgconfig.sh > ${_arch}-pkg-config
  done
}

package() {
  # This indeed has to go to the "normal" directory tree
  install -d ${pkgdir}/usr/bin
  for _arch in ${_architectures}; do
    install -m755 ${_arch}-pkg-config  ${pkgdir}/usr/bin
  done
}