pkgconf: Update to 0.9.5

This commit is contained in:
Alexpux
2014-05-04 18:24:12 +04:00
parent 1e2e515aa1
commit 979f52031d

View File

@@ -1,31 +1,31 @@
# Maintainer: Bartlomiej Piotrowski <nospam@bpiotrowski.pl>
pkgname=pkgconf
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=('i686' 'x86_64')
license=('ISC')
makedepends=('popt')
#makedepends=('popt')
conflicts=('pkg-config')
provides=('pkg-config')
source=(http://files.etoilebsd.net/pkgconf/$pkgname-$pkgver.tar.bz2)
sha256sums=('00033a1080a81dfff7cd7ef98d2b054e4cf627376df92a67b98f2e0c243e7f11')
sha256sums=('78dd81f5c0d89b65872bf887e9ee66927da1916796731a8d5183b43885e7029d')
build() {
cd $pkgname-$pkgver
./configure --prefix=/usr \
--sysconfdir=/etc \
--mandir=/usr/share/man \
--infodir=/usr/share/info \
--localstatedir=/var
make
cd $pkgname-$pkgver
./configure --prefix=/usr \
--sysconfdir=/etc \
--mandir=/usr/share/man \
--infodir=/usr/share/info \
--localstatedir=/var
make
}
package() {
cd $pkgname-$pkgver
make DESTDIR="$pkgdir" install
cp "$pkgdir"/usr/bin/pkgconf "$pkgdir"/usr/bin/pkg-config
cd $pkgname-$pkgver
make DESTDIR="$pkgdir" install
cp "$pkgdir"/usr/bin/pkgconf "$pkgdir"/usr/bin/pkg-config
}