pkgconf: Update to 0.9.5

This commit is contained in:
Alexpux
2014-05-04 10:09:11 +04:00
parent e02f15b03d
commit bfb8bc6743

View File

@@ -3,28 +3,28 @@
_realname=pkgconf
_mingw_suff=mingw-w64-${CARCH}
pkgname="${_mingw_suff}-${_realname}"
pkgver=0.9.3
pkgver=0.9.5
pkgrel=1
pkgdesc='pkg-config compatible utility which does not depend on glib'
url='https://github.com/nenolod/pkgconf'
arch=('any')
license=('ISC')
makedepends=('getopt')
makedepends=("${_mingw_suff}-gcc")
conflicts=("${_mingw_suff}-pkg-config")
provides=("${_mingw_suff}-pkg-config")
source=(http://files.etoilebsd.net/pkgconf/$_realname-$pkgver.tar.bz2)
sha256sums=('00033a1080a81dfff7cd7ef98d2b054e4cf627376df92a67b98f2e0c243e7f11')
sha256sums=('78dd81f5c0d89b65872bf887e9ee66927da1916796731a8d5183b43885e7029d')
build() {
build() {
cd $_realname-$pkgver
./configure --prefix=${MINGW_PREFIX} \
--build=${MINGW_CHOST} \
--host=${MINGW_CHOST} \
--target=${MINGW_CHOST} \
--sysconfdir=${MINGW_PREFIX}/etc \
--mandir=${MINGW_PREFIX}/share/man \
--infodir=${MINGW_PREFIX}/share/info \
--localstatedir=${MINGW_PREFIX}/var
--build=${MINGW_CHOST} \
--host=${MINGW_CHOST} \
--target=${MINGW_CHOST} \
--sysconfdir=${MINGW_PREFIX}/etc \
--mandir=${MINGW_PREFIX}/share/man \
--infodir=${MINGW_PREFIX}/share/info \
--localstatedir=${MINGW_PREFIX}/var
make
}