diff options
Diffstat (limited to 'repo/system/pcre.xibuild')
-rw-r--r-- | repo/system/pcre.xibuild | 10 |
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 } |