Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Pcre #1505

Closed
wants to merge 4 commits into from
Closed

Pcre #1505

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions recipes/pcre/build.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
#!/bin/bash

export CFLAGS="-I$PREFIX/include"
export CPPFLAGS="-I$PREFIX/include"
export LDFLAGS="-L$PREFIX/lib"

./configure --enable-utf --enable-unicode-properties --enable-pcregrep-libz --enable-pcregrep-libbz2 --enable-pcre16 --enable-pcre32 --prefix=$PREFIX
make
make install

33 changes: 33 additions & 0 deletions recipes/pcre/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@

package:
name: pcre
version: 8.38

source:
fn: pcre-8.38.tar.gz
url: ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-8.38.tar.gz
md5: 8a353fe1450216b6655dfcf3561716d9

build:
number: 0

requirements:
build:
- gcc # [linux]
- llvm # [osx]
- zlib
- bzip2
run:
- zlib
- bzip2

test:
commands:
- pcregrep --version
- pcretest -help

about:
home: http://pcre.org/original/doc/html/pcrebuild.html
license: 3-clause BSD License
summary: "Perl Compatible Regular Expressions"