19 lines
No EOL
521 B
Text
Executable file
19 lines
No EOL
521 B
Text
Executable file
# Description: A tool for passing the include path and/or library paths to build tools during the configure and make file execution
|
|
# URL:
|
|
# Maintainer:
|
|
# Depends on:
|
|
|
|
name=pkg-config
|
|
version=0.29.2
|
|
release=1
|
|
source=(https://pkg-config.freedesktop.org/releases/$name-$version.tar.gz)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
|
|
./configure --prefix=/usr \
|
|
--with-internal-glib \
|
|
--disable-host-tool
|
|
make
|
|
make DESTDIR=$PKG install
|
|
} |