contrib/pkgconf/Pkgfile

22 lines
514 B
Plaintext
Raw Normal View History

2016-06-10 14:46:35 +03:00
# Description: A system for managing library compile/link flags
# URL: https://github.com/pkgconf/pkgconf
2018-02-26 14:43:42 -05:00
# Maintainer: John Vogel, jvogel4 at stny dot rr dot com
2016-06-10 14:46:35 +03:00
name=pkgconf
2018-01-26 11:27:41 +02:00
version=1.4.1
2016-06-10 14:46:35 +03:00
release=1
2016-11-13 10:44:40 +02:00
source=(https://distfiles.dereferenced.org/$name/$name-$version.tar.xz)
2016-06-10 14:46:35 +03:00
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
2016-07-20 15:28:42 +03:00
rm -fr $PKG/usr/share/doc
2016-06-10 14:46:35 +03:00
}