Files
ports/core/pkgconf/spkgbuild
2023-11-22 19:30:21 +00:00

23 lines
486 B
Plaintext
Executable File

# description : Package compiler and linker metadata toolkit
name=pkgconf
version=2.1.0
release=1
source="https://distfiles.ariadne.space/pkgconf/$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
}