contrib/pkgconf/Pkgfile

22 lines
518 B
Plaintext
Raw Normal View History

2016-06-10 13:46:35 +02:00
# 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
2017-02-18 23:21:01 +01:00
version=1.2.2
2016-06-10 13:46:35 +02:00
release=1
2016-11-13 09:44:40 +01:00
source=(https://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
make
make install MANDIR=/usr/share/man/man1 DESTDIR=$PKG
ln -fs pkgconf $PKG/usr/bin/pkg-config
2016-07-20 14:28:42 +02:00
rm -fr $PKG/usr/share/doc
2016-06-10 13:46:35 +02:00
}