recipes: xorg/lib/pixman: upgraded to version 0.36.0
[dragora.git] / recipes / xorg / lib / pixman / recipe
bloba364121919d71f3e5e372946740d42346f929de4
1 # Build recipe for pixman.
3 # Copyright (c) 2017 Mateus P. Rodrigues <mprodrigues@dragora.org>.
4 # Copyright (c) 2017-2019 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=pixman
19 version=0.36.0
20 release=1
22 # Set 'outdir' for a nice and well-organized output directory
23 outdir="${outdir}/${arch}/xorg/lib"
25 tarname=${program}-${version}.tar.bz2
27 # Remote source(s)
28 fetch=http://www.x.org/releases/individual/lib/$tarname
30 description="
31 Library for pixel manipulation.
33 pixman is a library that provides low-level pixel manipulation,
34 features such as image compositing and trapezoid rasterization.
37 homepage=http://www.x.org
38 license="MIT X Consortium"
40 # Source documentation
41 docs="AUTHORS COPYING ChangeLog NEWS README"
42 docsdir="${docdir}/${program}-${version}"
44 build()
46     set -e
48     unpack "${tardir}/$tarname"
50     cd "$srcdir"
52     # Set sane permissions
53     chmod -R u+w,go-w,a+rX-s .
55     # Note `--disable-gtk' means "disable tests using GTK+".
56     # The rest of the `--disable-*' options are turned off,
57     # cause we are tuning to be generic as possible.
59     ./configure CFLAGS="$QICFLAGS" LDFLAGS="$QILDFLAGS" \
60      $configure_args \
61      --libdir=/usr/lib${libSuffix} \
62      --mandir=$mandir \
63      --docdir=$docsdir \
64      --enable-shared=yes \
65      --enable-static=no \
66      --enable-libpng=yes \
67      --disable-gtk \
68      --disable-mmx \
69      --disable-sse2 \
70      --disable-ssse3 \
71      --disable-vmx \
72      --disable-arm-simd \
73      --disable-arm-neon \
74      --disable-arm-iwmmxt \
75      --disable-arm-iwmmxt2 \
76      --build="$(cc -dumpmachine)"
78     make -j${jobs} V=1
79     make -j${jobs} DESTDIR="$destdir" install-strip
81     # Compress and link man pages (if needed)
82     if test -d "${destdir}/$mandir"
83     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}"/