mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 10:35:17 +03:00
40 lines
928 B
YAML
40 lines
928 B
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:
|
||
|
dependencies:
|
||
|
tea.xyz/gx/cc: c99
|
||
|
tea.xyz/gx/make: '*'
|
||
|
script: |
|
||
|
./configure $ARGS
|
||
|
make --jobs {{ hw.concurrency }}
|
||
|
make install
|
||
|
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
|