22 lines
525 B
Plaintext
22 lines
525 B
Plaintext
# Description: A system for managing library compile/link flags
|
|
# URL: https://github.com/pkgconf/pkgconf
|
|
# Maintainer: Svyatoslav Mishyn, juef at openmailbox dot org
|
|
|
|
name=pkgconf
|
|
version=1
|
|
release=1
|
|
source=(http://rabbit.dereferenced.org/%7Enenolod/distfiles/$name-$version.tar.xz)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
|
|
./configure --prefix=/usr \
|
|
--with-system-libdir=/lib:/usr/lib
|
|
|
|
make
|
|
make install MANDIR=/usr/share/man/man1 DESTDIR=$PKG
|
|
|
|
ln -fs pkgconf $PKG/usr/bin/pkg-config
|
|
rm -fr $PKG/usr/share/doc
|
|
}
|