contrib/pkgconf/Pkgfile

22 lines
457 B
Plaintext
Raw Normal View History

2016-06-10 13:46:35 +02:00
# Description: A system for managing library compile/link flags
2018-12-23 18:18:28 +01:00
# URL: http://pkgconf.org
2018-02-26 20:43:42 +01:00
# Maintainer: John Vogel, jvogel4 at stny dot rr dot com
2016-06-10 13:46:35 +02:00
name=pkgconf
2020-05-31 07:56:32 +02:00
version=1.7.3
2016-06-10 13:46:35 +02:00
release=1
2018-12-23 18:18:28 +01:00
source=(http://distfiles.dereferenced.org/$name/$name-$version.tar.xz)
2016-06-10 13:46:35 +02:00
build() {
cd $name-$version
./configure \
--prefix=/usr \
--with-system-libdir=/lib:/usr/lib
2016-06-10 13:46:35 +02:00
make
make install MANDIR=/usr/share/man/man1 DESTDIR=$PKG
2016-07-20 14:28:42 +02:00
rm -fr $PKG/usr/share/doc
2016-06-10 13:46:35 +02:00
}