1
0
Fork 0
mirror of https://github.com/pygos/build.git synced 2024-05-20 20:46:13 +02:00
build/pkg/tc-pkg-config/build
David Oberhollenzer 8fa44569d8 cleanup: remove deploy directory argument from package command
Signed-off-by: David Oberhollenzer <goliath@infraroot.at>
2019-03-06 10:03:12 +01:00

39 lines
952 B
Plaintext
Executable file

VERSION="0.29.2"
SRCDIR="pkg-config-$VERSION"
TARBALL="$SRCDIR.tar.gz"
URL="https://pkg-config.freedesktop.org/releases/"
SHA256SUM="6fc69c01688c9458a57eb9a1664c9aba372ccda420a02bf4429fe610e7e7d591"
DEPENDS="tc-pkgtool"
prepare() {
return
}
build() {
$1/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"
touch "$PKGDEPLOYDIR/$PKGNAME.files"
cat > "$PKGDEPLOYDIR/$PKGNAME.desc" <<_EOF
name $PKGNAME
_EOF
}
check_update() {
curl --silent -L "$URL" | grep -o ">pkg-config-[0-9.]*tar.gz<" | \
sed 's/>pkg-config-//g' | sed 's/.tar.gz<//g' | \
verson_find_greatest "$VERSION"
}