mirror of
https://github.com/outbackdingo/ports.git
synced 2026-03-22 07:44:36 +00:00
23 lines
486 B
Plaintext
Executable File
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
|
|
|
|
}
|