mirror of
https://github.com/pygos/build.git
synced 2024-11-17 00:47:10 +01:00
dbbb1889f4
Signed-off-by: David Oberhollenzer <david.oberhollenzer@tele2.at>
30 lines
669 B
Text
Executable file
30 lines
669 B
Text
Executable file
VERSION="0.29.2"
|
|
SRCDIR="pkg-config-$VERSION"
|
|
TARBALL="$SRCDIR.tar.gz"
|
|
URL="https://pkg-config.freedesktop.org/releases/"
|
|
SHA256SUM="6fc69c01688c9458a57eb9a1664c9aba372ccda420a02bf4429fe610e7e7d591"
|
|
|
|
prepare() {
|
|
return
|
|
}
|
|
|
|
build() {
|
|
local SOURCE="$1"
|
|
local BUILD="$2"
|
|
|
|
$SOURCE/configure --prefix="$TCDIR" --target="$TARGET" \
|
|
--build="$HOSTTUPLE" --host="$HOSTTUPLE" \
|
|
--with-sysroot="$TCDIR/$TARGET" \
|
|
--with-pc-path="$TCDIR/$TARGET/lib/pkgconfig" \
|
|
--with-system-include-path="/include" \
|
|
--with-system-library-path="/lib" \
|
|
--with-internal-glib
|
|
|
|
make -j $NUMJOBS
|
|
}
|
|
|
|
deploy() {
|
|
make install
|
|
|
|
ln -s pkg-config "$TCDIR/bin/$TARGET-pkg-config"
|
|
}
|