1
0
Fork 0
mirror of https://github.com/pygos/build.git synced 2024-06-29 14:30:14 +02:00
build/pkg/expat/build
David Oberhollenzer 2a3958f042 Bump expat version
Signed-off-by: David Oberhollenzer <goliath@infraroot.at>
2019-09-18 14:07:02 +02:00

31 lines
769 B
Plaintext

VERSION="2.2.8"
SRCDIR="expat-${VERSION}"
TARBALL="${SRCDIR}.tar.xz"
URL="https://github.com/libexpat/libexpat/releases/download/R_2_2_8"
SHA256SUM="61caa81a49d858afb2031c7b1a25c97174e7f2009aa1ec4e1ffad2316b91779b"
DEPENDS="libbsd-dev toolchain"
SUBPKG="expat expat-dev"
prepare() {
return
}
build() {
run_configure "$1" --without-xmlwf --with-libbsd
make -j $NUMJOBS
}
deploy() {
make DESTDIR="$PKGDEPLOYDIR" install
cp $SCRIPTDIR/pkg/$PKGNAME/*.{files,desc} "$PKGDEPLOYDIR"
}
check_update() {
local version=$(echo "$VERSION" | sed 's/R_//g' | sed 's/_/./g')
curl --silent -L "https://github.com/libexpat/libexpat/releases" | \
grep -o "expat-[0-9.]*tar.bz2" | \
sed 's/expat-//g' | sed 's/.tar.bz2//g' | \
verson_find_greatest "$version"
}