Commit | Line | Data |
---|---|---|
6dca1d21 JB |
1 | # Description: Perl Compatible Regular Expressions |
2 | # URL: http://www.pcre.org | |
3 | # Maintainer: CRUX System Team, core-ports at crux dot nu | |
4 | # Arch Maintainer: CRUX-ARM System Team, crux-arm at mikeux dot dyndns dot org | |
9efe8def | 5 | # Depends on: |
6dca1d21 JB |
6 | |
7 | name=libpcre | |
9efe8def | 8 | version=8.00 |
6dca1d21 JB |
9 | release=1 |
10 | source=(ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-$version.tar.bz2) | |
11 | ||
12 | build() { | |
13 | cd pcre-$version | |
14 | ||
15 | ./configure --build=$CHOST \ | |
16 | --host=$CTARGET \ | |
17 | --prefix=/usr \ | |
18 | --mandir=/usr/man \ | |
19 | --enable-utf8 \ | |
20 | --enable-unicode-properties | |
21 | make | |
22 | make DESTDIR=$PKG install | |
23 | ||
24 | rm -r $PKG/usr/share | |
25 | } |