summaryrefslogtreecommitdiff
path: root/pkgconf/Pkgfile
blob: ac7c9b861205c70ea2f8233df225327b034352b4 (plain)
    1 # Description: A system for managing library compile/link flags
    2 # URL:         https://github.com/pkgconf/pkgconf
    3 # Maintainer:  Svyatoslav Mishyn, juef at openmailbox dot org
    4 
    5 name=pkgconf
    6 version=1.3.0
    7 release=1
    8 source=(https://distfiles.dereferenced.org/$name/$name-$version.tar.xz)
    9 
   10 build() {
   11 	cd $name-$version
   12 
   13 	./configure	--prefix=/usr				\
   14 			--with-system-libdir=/lib:/usr/lib
   15 
   16 	make
   17 	make install MANDIR=/usr/share/man/man1 DESTDIR=$PKG
   18 
   19 	ln -fs pkgconf $PKG/usr/bin/pkg-config
   20 	rm -fr $PKG/usr/share/doc
   21 }

Generated by cgit