qi: make release of qi 1.1
[dragora.git] / recipes / x-libs / atk / recipe
blob61789366d01c2f68aa2a83e2c4e0c0b5a9e6c5e1
1 # Build recipe for ATK.
3 # Copyright (C) 2018, MMPG <mmpg@vp.pl>
4 # Copyright (C) 2018, 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=atk
19 version=2.30.0
20 release=1
22 # Set 'outdir' for a nice and well-organized output directory
23 outdir="${outdir}/${arch}/x-libs"
25 tarname=${program}-${version}.tar.xz
27 # Remote source(s)
28 fetch=http://ftp.gnome.org/pub/gnome/sources/atk/2.30/$tarname
30 description="
31 A library of accessibility functions.
33 It is used by the GTK+ toolkit.
36 homepage=http://developer.gnome.org/atk/
37 license=LGPLv2+
39 # Source documentation
40 docs="AUTHORS COPYING NEWS README"
41 docsdir="${docdir}/${program}-${version}"
43 build()
45     set -e
46     unpack "${tardir}/$tarname"
48     cd "$srcdir"
50     # Set sane permissions
51     chmod -R u+w,go-w,a+rX-s .
53     mkdir -p build
54     cd build
56     CFLAGS="$QICFLAGS" LDFLAGS="$QILDFLAGS" \
57     meson setup $configure_args \
58      --libdir /usr/lib${libSuffix} \
59      --buildtype=release \
60      --strip \
61      ..
63     ninja
64     DESTDIR="$destdir" ninja install
66     cd ..
68     # Copy documentation
69     mkdir -p "${destdir}${docsdir}"
70     cp -p $docs "${destdir}${docsdir}"