diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2020-02-18 12:56:22 -0500 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2020-02-18 12:56:22 -0500 |
commit | 13984f725db156cbc952d0afe90f27da15a0b85d (patch) | |
tree | b3a39b75ecaecca11ee1525a99153a7606e460cb /pcre | |
download | spm_packages-13984f725db156cbc952d0afe90f27da15a0b85d.tar.gz |
Initial commit
Diffstat (limited to 'pcre')
-rw-r--r-- | pcre/build.sh | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/pcre/build.sh b/pcre/build.sh new file mode 100644 index 0000000..6c1784a --- /dev/null +++ b/pcre/build.sh @@ -0,0 +1,40 @@ +#!/bin/bash +name=pcre +version=8.43 +revision=0 +sources=( + "https://ftp.pcre.org/pub/${name}/${name}-${version}.tar.gz" +) +build_depends=( + "automake" + "autoconf" + "readline" + "zlib" +) +depends=( + "bzip2" + "readline" + "zlib" +) + +function prepare() { + tar xf ${name}-${version}.tar.gz + cd ${name}-${version} +} + +function build() { + ./configure \ + --prefix=${_prefix} \ + --enable-unicode-properties \ + --enable-pcre16 \ + --enable-pcre32 \ + --enable-jit \ + --enable-pcregrep-libz \ + --enable-pcregrep-libbz2 \ + --enable-pcretest-libreadline + make -j${_maxjobs} +} + +function package() { + make install DESTDIR="${_pkgdir}" +} |