mirror of
https://github.com/yann64/haikuports.git
synced 2026-04-21 11:10:07 +02:00
75 lines
1.9 KiB
Plaintext
75 lines
1.9 KiB
Plaintext
SUMMARY="Helper tool for compiling applications and libraries"
|
|
DESCRIPTION="
|
|
pkg-config is a helper tool used when compiling applications and libraries. It \
|
|
helps you insert the correct compiler options on the command line so an \
|
|
application can use gcc -o test test.cpkg-config --libs --cflags glib-2.0 for \
|
|
instance, rather than hard-coding values on where to find glib (or other \
|
|
libraries). It is language-agnostic, so it can be used for defining the \
|
|
location of documentation tools, for instance.
|
|
"
|
|
HOMEPAGE="http://pkg-config.freedesktop.org/wiki/"
|
|
LICENSE="GNU GPL v2"
|
|
COPYRIGHT="1998, 2001-2006 Red Hat Inc."
|
|
SRC_URI="http://pkgconfig.freedesktop.org/releases/pkg-config-0.27.1.tar.gz"
|
|
CHECKSUM_SHA256="4f63d0df3035101b12949250da5231af49e3c3afcd8fb18554fa7c3cb92d8c17"
|
|
REVISION="2"
|
|
ARCHITECTURES="x86_gcc2 x86 x86_64"
|
|
SECONDARY_ARCHITECTURES="x86_gcc2 x86"
|
|
|
|
PATCHES="pkgconfig-0.27.1.patchset"
|
|
|
|
PROVIDES="
|
|
pkgconfig$secondaryArchSuffix = $portVersion compat >= 0.27
|
|
cmd:pkg_config$secondaryArchSuffix = $portVersion compat >= 0.27
|
|
"
|
|
REQUIRES="
|
|
haiku$secondaryArchSuffix >= $haikuVersion
|
|
lib:libiconv$secondaryArchSuffix
|
|
"
|
|
BUILD_REQUIRES="
|
|
devel:libiconv$secondaryArchSuffix
|
|
"
|
|
BUILD_PREREQUIRES="
|
|
haiku${secondaryArchSuffix}_devel >= $haikuVersion
|
|
cmd:aclocal
|
|
cmd:autoconf
|
|
cmd:automake
|
|
cmd:autoreconf
|
|
cmd:awk
|
|
cmd:find
|
|
cmd:gcc$secondaryArchSuffix
|
|
cmd:ld$secondaryArchSuffix
|
|
cmd:libtoolize
|
|
cmd:make
|
|
cmd:xargs
|
|
"
|
|
|
|
SOURCE_DIR="pkg-config-0.27.1"
|
|
|
|
BUILD()
|
|
{
|
|
cd glib
|
|
libtoolize --force --copy --install
|
|
autoreconf
|
|
cd ..
|
|
libtoolize --force --copy --install
|
|
aclocal
|
|
autoconf
|
|
automake --add-missing
|
|
|
|
pcPathSubdir="develop/lib${secondaryArchSuffix/_//}/pkgconfig"
|
|
pcPath="/boot/home/config/non-packaged/$pcPathSubdir"
|
|
pcPath="$pcPath:/boot/home/config/$pcPathSubdir"
|
|
pcPath="$pcPath:/boot/system/$pcPathSubdir"
|
|
|
|
runConfigure ./configure \
|
|
--with-internal-glib \
|
|
--with-pc_path="$pcPath"
|
|
make $jobArgs
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
make install
|
|
}
|