diff options
Diffstat (limited to 'repo/core/pcre.xibuild')
-rw-r--r-- | repo/core/pcre.xibuild | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/repo/core/pcre.xibuild b/repo/core/pcre.xibuild new file mode 100644 index 0000000..7788687 --- /dev/null +++ b/repo/core/pcre.xibuild @@ -0,0 +1,14 @@ +#!/bin/bash + +DEPS=(glibc) + +SOURCE=https://github.com/PhilipHazel/pcre2/releases/download/pcre2-10.39/pcre2-10.39.tar.bz2 +DESC="A library that implements regular expressions in a perl style" + +build () { + CC=gcc ./configure --prefix=/usr + make + make DESTDIR=$PKG_DEST install +} + + |