contrib/pkgconf/Pkgfile
John Vogel 326f5f13a2 pkgconf: update to 1.4.2 release
Also, don't create usr/bin/pkg-config symlink, since this
conflicts with core/pkg-config port. Instead, add a README
explaining the situation.
2018-03-02 00:24:30 -05:00

22 lines
474 B
Plaintext

# Description: A system for managing library compile/link flags
# URL: https://github.com/pkgconf/pkgconf
# Maintainer: John Vogel, jvogel4 at stny dot rr dot com
name=pkgconf
version=1.4.2
release=1
source=(https://distfiles.dereferenced.org/$name/$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
rm -fr $PKG/usr/share/doc
}