1
0
Fork 0
mirror of https://github.com/pygos/build.git synced 2024-06-03 02:38:44 +02:00
build/pkg/pcre/build
David Oberhollenzer c8d01f966a Use pkgtool to resolve and manage dependencies, add sub package support
Been working on this for too long, don't remember the specifics, will add
documentation.

Signed-off-by: David Oberhollenzer <goliath@infraroot.at>
2019-03-03 17:47:02 +01:00

30 lines
605 B
Plaintext
Executable file

VERSION="8.42"
SRCDIR="pcre-${VERSION}"
TARBALL="${SRCDIR}.tar.bz2"
URL="https://ftp.pcre.org/pub/pcre"
SHA256SUM="2cd04b7c887808be030254e8d77de11d3fe9d4505c39d4b15d2664ffe8bf9301"
DEPENDS="toolchain"
SUBPKG="pcre pcre-dev"
prepare() {
return
}
build() {
run_configure "$1"
make -j $NUMJOBS
}
deploy() {
local SOURCE="$1"
local DEPLOY="$2"
make DESTDIR="$DEPLOY" install
cp $SCRIPTDIR/pkg/$PKGNAME/*.{files,desc} "$DEPLOY"
}
check_update() {
curl --silent -L "$URL" | grep -o ">pcre-[0-9.]*tar.bz2<" | \
sed 's/>pcre-//g' | sed 's/.tar.bz2<//g' | \
verson_find_greatest "$VERSION"
}