.gitignore: updated
[dragora.git] / recipes / x-libs / freetype / recipe
blob614f7f4e04758ba2f3561dac6511c7b87c5a0719
1 # Recipe file for freetype.
3 # Copyright (c) 2017 Mateus P. Rodrigues, <mprodrigues@dragora.org>.
4 # Copyright (c) 2017-2018 Matias Fonzo, <selk@dragora.org>.
6 # Licensed under the Apache License, Version 2.0 (the "License");
7 # you may not use this file except in compliance with the License.
8 # You may obtain a copy of the License at
10 #    http://www.apache.org/licenses/LICENSE-2.0
12 # Unless required by applicable law or agreed to in writing, software
13 # distributed under the License is distributed on an "AS IS" BASIS,
14 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 # See the License for the specific language governing permissions and
16 # limitations under the License.
18 program=freetype
19 version=2.9.1
20 release=1
22 # Set 'outdir' for a nice and well-organized output directory
23 outdir="${outdir}/${arch}/x-libs"
25 # The installation of this package replaces to
26 replace=freetype_pass1
28 tarname=${program}-${version}.tar.bz2
30 # Remote source(s)
31 fetch=http://download.savannah.gnu.org/releases/freetype/$tarname
33 description="
34 A font engine.
36 FreeType is a software font engine that is designed to be small,
37 efficient, highly customizable, and portable while capable of
38 producing high-quality output (glyph images).  It can be used in
39 graphics libraries, display servers, font conversion tools,
40 text image generation tools, and many other products as well.
43 homepage=http://www.freetype.org/
44 license="GPLv2 | FreeType License (FTL)"
46 # Source documentation
47 docs="ChangeLog* README*"
48 docsdir="${docdir}/${program}-${version}"
50 build() {
51     set -e
53     unpack "${tardir}/$tarname"
55     cd "$srcdir"
57     # Set sane permissions
58     chmod -R u+w,go-w,a+rX-s .
60     ./configure CFLAGS="$QICFLAGS" LDFLAGS="$QILDFLAGS" \
61      $configure_args \
62      --libdir=/usr/lib${libSuffix} \
63      --mandir=$mandir \
64      --docdir=$docsdir \
65      --disable-static \
66      --enable-shared \
67      --with-bzip2=yes \
68      --with-zlib=yes \
69      --with-png=yes \
70      --with-harfbuzz=yes \
71      --build="$(cc -dumpmachine)" \
72      ac_cv_prog_RC= ac_cv_prog_ac_ct_RC=
74     make -j${jobs} V=1
75     make -j${jobs} DESTDIR="$destdir" install
77     # Strip remaining binaries and libraries
78     find "$destdir" -type f | xargs file | \
79      awk '/ELF/ && /executable/ || /shared object/' | \
80       cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null
82     # Compress manual pages
83     if [ -d "${destdir}/$mandir" ] ; then
84         (
85             cd "${destdir}/$mandir"
86             find . -type f -exec lzip -9 '{}' +
87             find . -type l | while read -r file
88             do
89                 ln -sf "$(readlink -- "$file").lz" "${file}.lz"
90                 rm -- "$file"
91             done
92         )
93     fi
95     # Copy documentation
96     mkdir -p "${destdir}${docsdir}"
97     cp -p $docs "${destdir}${docsdir}/"