mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
23 lines
684 B
Bash
23 lines
684 B
Bash
# Maintainer: Krzysztof "hiciu" Warzecha <kwarzecha7@gmail.com>
|
|
# $Id: PKGBUILD 1407 2008-05-07 22:55:37Z andyrtr $
|
|
# Maintainer: dorphell <dorphell@archlinux.org>
|
|
# Committer: Judd Vinet <jvinet@zeroflux.org>
|
|
|
|
pkgname=pkgconfig
|
|
pkgver=0.23
|
|
pkgrel=1
|
|
pkgdesc="A system for managing library compile/link flags"
|
|
arch=(arm)
|
|
url="http://pkgconfig.freedesktop.org/wiki/"
|
|
license=('GPL')
|
|
groups=('base-devel')
|
|
depends=(glibc)
|
|
source=(http://pkgconfig.freedesktop.org/releases/pkg-config-${pkgver}.tar.gz)
|
|
md5sums=('d922a88782b64441d06547632fd85744')
|
|
|
|
build() {
|
|
cd ${startdir}/src/pkg-config-${pkgver}
|
|
./configure --prefix=/usr
|
|
make || return 1
|
|
make DESTDIR=${startdir}/pkg install
|
|
}
|