summaryrefslogtreecommitdiff
path: root/repo/system/pcre.xibuild
diff options
context:
space:
mode:
authordavidovski <david@davidovski.xyz>2022-03-03 00:13:55 +0000
committerdavidovski <david@davidovski.xyz>2022-03-03 00:13:55 +0000
commit2fea415a8b6ab9eae92686a182341d8f5fe56d00 (patch)
tree889fee82b0ebde2870be7673fc7eff9c2bc2efeb /repo/system/pcre.xibuild
parent92a76bb80efda3fcb96cb0a990ae5bfa658449d1 (diff)
fixed docbook issues
Diffstat (limited to 'repo/system/pcre.xibuild')
-rw-r--r--repo/system/pcre.xibuild10
1 files changed, 4 insertions, 6 deletions
diff --git a/repo/system/pcre.xibuild b/repo/system/pcre.xibuild
index 52ca2eb..89ef437 100644
--- a/repo/system/pcre.xibuild
+++ b/repo/system/pcre.xibuild
@@ -1,11 +1,11 @@
#!/bin/sh
MAKEDEPS="make "
-DEPS="musl"
+DEPS="musl readline zlib bzip2 bash"
-PKG_VER=10.39
-SOURCE=https://github.com/PhilipHazel/pcre2/releases/download/pcre2-$PKG_VER/pcre2-$PKG_VER.tar.gz
-DESC="A library that implements regular expressions in a perl style"
+PKG_VER=8.45
+SOURCE=https://sourceforge.net/projects/pcre/files/pcre/$PKG_VER/pcre-$PKG_VER.tar.gz
+DESC="A library that implements regular expressions in a perl style (old version)"
build () {
CC=gcc ./configure --prefix=/usr
@@ -14,8 +14,6 @@ build () {
package () {
make DESTDIR=$PKG_DEST install
- # this probably is not right but it works for now
- #ln /usr/lib/libpcre2-8.so $PKG_DEST/usr/lib/libpcre.so.1
}