stages: 2/04-iso: Do not include kernel build/source tree in the LiveCD
[dragora.git] / recipes / libs / pcre2 / recipe
blobae018951e9bbc4bcbc2734d272d3d739f911daac
1 # Build recipe for pcre2.
3 # Copyright (c) 2021-2022 Matias Fonzo, <selk@dragora.org>.
5 # Licensed under the Apache License, Version 2.0 (the "License");
6 # you may not use this file except in compliance with the License.
7 # You may obtain a copy of the License at
9 #    http://www.apache.org/licenses/LICENSE-2.0
11 # Unless required by applicable law or agreed to in writing, software
12 # distributed under the License is distributed on an "AS IS" BASIS,
13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 # See the License for the specific language governing permissions and
15 # limitations under the License.
17 # Exit immediately on any error
18 set -e
20 program=pcre2
21 version=10.42
22 release=1
24 # Define a category for the output of the package name
25 pkgcategory=libs
27 tarname=${program}-${version}.tar.bz2
29 # Remote source(s)
30 fetch=https://github.com/PhilipHazel/pcre2/releases/download/${program}-${version}/$tarname
32 description="
33 Perl-compatible regular expressions (version 2).
35 The PCRE2 library is a set of C functions that implement regular
36 expression pattern matching using the same syntax and semantics as
37 Perl 5.  PCRE2 has its own native API, as well as a set of wrapper
38 functions that correspond to the POSIX regular expression API.
39 The PCRE2 library is free, even for building proprietary software.
40 It comes in three forms, for processing 8-bit, 16-bit, or 32-bit code
41 units, in either literal or UTF encoding.
44 homepage=https://www.pcre.org
45 license=BSD
47 # Source documentation
48 docsdir="${docdir}/${program}-${version}"
50 build()
52     unpack "${tardir}/$tarname"
54     cd "$srcdir"
56     # Set sane permissions
57     chmod -R u+w,go-w,a+rX-s .
59     ./configure CPPFLAGS="$QICPPFLAGS" \
60     CFLAGS="$QICFLAGS" LDFLAGS="$QILDFLAGS" \
61      $configure_args \
62      --libdir=/usr/lib${libSuffix} \
63      --infodir=$infodir \
64      --mandir=$mandir \
65      --docdir=$docsdir \
66      --enable-jit \
67      --enable-pcre2-16 \
68      --enable-pcre2-32 \
69      --enable-pcre2grep-libz \
70      --enable-pcre2grep-libbz2 \
71      --enable-pcre2test-libreadline \
72      --build="$(gcc -dumpmachine)"
74     make -j${jobs} V=1
75     make -j${jobs} DESTDIR="$destdir" install-strip
77     # Compress info documents deleting index file for the package
78     if test -d "${destdir}/$infodir"
79     then
80         rm -f "${destdir}/${infodir}/dir"
81         lzip -9 "${destdir}/${infodir}"/*
82     fi
84     # Compress and link man pages (if needed)
85     if test -d "${destdir}/$mandir"
86     then
87         (
88             cd "${destdir}/$mandir"
89             find . -type f -exec lzip -9 {} +
90             find . -type l | while read -r file
91             do
92                 ln -sf "$(readlink -- "$file").lz" "${file}.lz"
93                 rm -- "$file"
94             done
95         )
96     fi