Files
void-packages/srcpkgs/pkgconf/template
2018-11-18 22:47:40 +01:00

23 lines
830 B
Bash

# Template file for 'pkgconf'
pkgname=pkgconf
version=1.5.4
revision=2
short_desc="Provides compiler and linker configuration"
maintainer="Enno Boland <gottox@voidlinux.eu>"
license="MIT"
homepage="https://git.dereferenced.org/pkgconf/pkgconf"
build_style=gnu-configure # cmake and meson also available
configure_args="--disable-shared --disable-static"
checkdepends="kyua"
changelog="https://git.dereferenced.org/pkgconf/pkgconf/raw/branch/master/NEWS"
distfiles="https://distfiles.dereferenced.org/pkgconf/${pkgname}-${version}.tar.xz"
checksum=d3468308553c94389dadfd10c4d1067269052b5364276a9d24a643c88485f715
post_install() {
vlicense COPYING
rm -r $DESTDIR/usr/include
ln -sr $DESTDIR/usr/bin/pkgconf $DESTDIR/usr/bin/pkg-config
ln -sr $DESTDIR/usr/share/man/man1/pkgconf.1 \
$DESTDIR/usr/share/man/man1/pkg-config.1
}