21 lines
575 B
Text
Executable file
21 lines
575 B
Text
Executable file
# Description: Package compiler and linker metadata toolkit
|
|
|
|
name=pkgconf
|
|
version=1.8.0
|
|
release=1
|
|
source=(http://distfiles.dereferenced.org/$name/$name-$version.tar.xz)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
--with-pkg-config-dir="/usr/lib/pkgconfig:/usr/share/pkgconfig" \
|
|
--with-system-libdir="/lib:/usr/lib" \
|
|
--with-system-includedir="/usr/include"
|
|
make
|
|
make DESTDIR=$PKG install
|
|
|
|
ln -sf pkgconf "$PKG"/usr/bin/pkg-config
|
|
}
|