diff options
| author | aethrvmn <me@aethrvmn.gr> | 2025-11-16 20:43:49 +0000 |
|---|---|---|
| committer | aethrvmn <me@aethrvmn.gr> | 2025-11-16 20:43:49 +0000 |
| commit | 0582b0f8cd26678e741a06ba2ab42cc47a7c689a (patch) | |
| tree | 028dcc99591775e87682c0ff8259fea3a21aa538 /src/tesserae/extra/pcre2.nim | |
| parent | moved core LFS tessera to core/ (diff) | |
moved non LFS tessera to extra/
Diffstat (limited to 'src/tesserae/extra/pcre2.nim')
| -rw-r--r-- | src/tesserae/extra/pcre2.nim | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/src/tesserae/extra/pcre2.nim b/src/tesserae/extra/pcre2.nim new file mode 100644 index 0000000..5ca3dac --- /dev/null +++ b/src/tesserae/extra/pcre2.nim @@ -0,0 +1,23 @@ +import .. / lapis + +tessera "pcre2": + source: "https://github.com/PCRE2Project/pcre2/releases/download/pcre2-10.45/pcre2-10.45.tar.bz2" + patches: @[""] + dependencies: @[""] + build: @[ + """ + ./configure --prefix=/usr \ + --docdir=/usr/share/doc/pcre2-10.45 \ + --enable-unicode \ + --enable-jit \ + --enable-pcre2-16 \ + --enable-pcre2-32 \ + --enable-pcre2grep-libz \ + --enable-pcre2grep-libbz2 \ + --enable-pcre2test-libreadline \ + --disable-static + """, + "make", + "make install" + ] + result: "pcre2-config" |
