1
0
Fork 0
mirror of https://github.com/pygos/build.git synced 2024-06-24 12:10:13 +02:00

Add PCRE package

Signed-off-by: David Oberhollenzer <david.oberhollenzer@tele2.at>
This commit is contained in:
David Oberhollenzer 2018-10-03 16:29:08 +02:00
parent a71c45aec0
commit f3861b9df1
2 changed files with 38 additions and 0 deletions

29
pkg/pcre/build Executable file
View file

@ -0,0 +1,29 @@
VERSION="8.42"
SRCDIR="pcre-${VERSION}"
TARBALL="${SRCDIR}.tar.bz2"
URL="https://ftp.pcre.org/pub/pcre"
SHA256SUM="2cd04b7c887808be030254e8d77de11d3fe9d4505c39d4b15d2664ffe8bf9301"
DEPENDS="toolchain"
prepare() {
return
}
build() {
run_configure "$1"
make -j $NUMJOBS
}
deploy() {
local SOURCE="$1"
local DEPLOY="$2"
make DESTDIR="$DEPLOY" install
cp "$SCRIPTDIR/pkg/$PKGNAME/rootfs_files.txt" "$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"
}

View file

@ -0,0 +1,9 @@
lib/libpcre.so m 777 0 0
lib/libpcre.so.1 m 777 0 0
lib/libpcre.so.1.2.10 m 555 0 0
lib/libpcrecpp.so m 777 0 0
lib/libpcrecpp.so.0 m 777 0 0
lib/libpcrecpp.so.0.0.1 m 555 0 0
lib/libpcreposix.so m 777 0 0
lib/libpcreposix.so.0 m 777 0 0
lib/libpcreposix.so.0.0.6 m 555 0 0