mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 10:35:17 +03:00
41 lines
1 KiB
YAML
41 lines
1 KiB
YAML
distributable:
|
|
url: https://github.com/PCRE2Project/pcre2/releases/download/pcre2-{{version.major}}.{{version.minor}}/pcre2-{{version.major}}.{{version.minor}}.tar.gz
|
|
strip-components: 1
|
|
|
|
#NOTE see pcre.org for “pcre original flavor”
|
|
#NOTE this yaml is almost identical
|
|
|
|
versions:
|
|
github: PCRE2Project/pcre2/tags # reads github tags from github
|
|
strip: /^pcre2-/
|
|
|
|
dependencies:
|
|
sourceware.org/bzip2: 1
|
|
zlib.net: 1
|
|
|
|
build:
|
|
script:
|
|
- ./configure $ARGS
|
|
- make --jobs {{ hw.concurrency }}
|
|
- make install
|
|
- run: |
|
|
sed -i.bak -e 's/^prefix=.*/prefix=$(dirname $(dirname $0))/' pcre2-config
|
|
rm pcre2-config.bak
|
|
working-directory: ${{ prefix }}/bin
|
|
env:
|
|
ARGS:
|
|
- --prefix={{ prefix }}
|
|
- --enable-pcre2-16
|
|
- --enable-pcre2-32
|
|
- --enable-pcre2grep-libz
|
|
- --enable-pcre2grep-libbz2
|
|
- --enable-jit
|
|
|
|
provides:
|
|
- bin/pcre2-config
|
|
- bin/pcre2grep
|
|
- bin/pcre2test
|
|
|
|
test:
|
|
script: pcre2grep "regular expression" {{ prefix }}/share/doc/pcre2/README
|