recipes: Rename 'pkghashtag' variable to 'pkgcategory'
[dragora.git] / recipes / x-libs / freetype_pass1 / recipe
blob159015bc626a8d0e3021900274b59804fca2a06c
1 # Build recipe for freetype (pass1).
3 # Copyright (c) 2018 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 program=freetype
18 version=2.9.1
19 release=1
21 # Define a category for the output of the package name
22 pkgcategory=x-libs
24 pkgname=freetype_pass1
26 tarname=${program}-${version}.tar.bz2
28 # Remote source(s)
29 fetch=http://download.savannah.gnu.org/releases/freetype/$tarname
31 description="
32 Temporary installation of freetype.
34 This is a temporary installation to satisfy the requirements of Xorg.
35 Later, this will be replaced with the fully \"freetype\" package.
38 homepage=http://www.freetype.org/
39 license="GPLv2 | FreeType License (FTL)"
41 # Source documentation
42 docsdir="${docdir}/${pkgname}-${version}"
44 build() {
45     set -e
47     unpack "${tardir}/$tarname"
49     cd "$srcdir"
51     # Set sane permissions
52     chmod -R u+w,go-w,a+rX-s .
54     ./configure CFLAGS="$QICFLAGS" LDFLAGS="$QILDFLAGS" \
55      $configure_args \
56      --libdir=/usr/lib${libSuffix} \
57      --mandir=$mandir \
58      --docdir=$docsdir \
59      --disable-static \
60      --enable-shared \
61      --with-bzip2=yes \
62      --with-zlib=yes \
63      --with-png=yes \
64      --with-harfbuzz=no \
65      --build="$(cc -dumpmachine)" \
66      ac_cv_prog_RC= ac_cv_prog_ac_ct_RC=
68     make -j${jobs} V=1
69     make -j${jobs} DESTDIR="$destdir" install
71     # Strip remaining binaries and libraries
72     find "$destdir" -type f | xargs file | \
73      awk '/ELF/ && /executable/ || /shared object/' | \
74       cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null
76     # Compress manual pages
77     if [ -d "${destdir}/$mandir" ] ; then
78         (
79             cd "${destdir}/$mandir"
80             find . -type f -exec lzip -9 '{}' +
81             find . -type l | while read -r file
82             do
83                 ln -sf "$(readlink -- "$file").lz" "${file}.lz"
84                 rm -- "$file"
85             done
86         )
87     fi