mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-09 18:52:30 +01:00
24 lines
570 B
Plaintext
24 lines
570 B
Plaintext
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
|
pkgname=pkgconfig
|
|
pkgver=0.25
|
|
pkgrel=0
|
|
pkgdesc="A system for managing library compile/link flags"
|
|
url="http://pkgconfig.freedesktop.org/wiki/"
|
|
arch="all"
|
|
license="GPL"
|
|
depends=
|
|
source="http://$pkgname.freedesktop.org/releases/pkg-config-$pkgver.tar.gz"
|
|
subpackages="$pkgname-doc"
|
|
|
|
build() {
|
|
cd "$srcdir"/pkg-config-$pkgver
|
|
./configure --prefix=/usr
|
|
make || return 1
|
|
}
|
|
|
|
package() {
|
|
cd "$srcdir"/pkg-config-$pkgver
|
|
make DESTDIR="$pkgdir" install
|
|
}
|
|
md5sums="a3270bab3f4b69b7dc6dbdacbcae9745 pkg-config-0.25.tar.gz"
|