core/pkg-config/Pkgfile

22 lines
529 B
Plaintext
Raw Normal View History

2006-02-23 16:26:10 +01:00
# Description: A system for managing library compile/link flags
# URL: http://pkgconfig.freedesktop.org/wiki/
# Maintainer: CRUX System Team, core-ports at crux dot nu
2006-02-23 16:26:10 +01:00
name=pkg-config
2013-01-27 10:06:46 +01:00
version=0.28
2012-07-16 13:58:40 +02:00
release=1
source=(http://pkgconfig.freedesktop.org/releases/$name-$version.tar.gz)
2006-02-23 16:26:10 +01:00
build() {
cd $name-$version
2010-05-24 10:47:10 +02:00
./configure --prefix=/usr \
--mandir=/usr/man \
2013-01-27 10:06:46 +01:00
--with-internal-glib \
--disable-host-tool
make
make DESTDIR=$PKG install
2012-08-25 09:48:04 +02:00
rm -r $PKG/usr/share/doc
2006-02-23 16:26:10 +01:00
}