recipes: xfce/*: upgraded to release 4.14
[dragora.git] / recipes / x-libs / libwnck / recipe
blobab20feddb07e59cce838a80c46ea84f782e8e5cf
1 # Build recipe for libwnck.
3 # Copyright (c) 2018-2019 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=libwnck
18 version=3.32.0
19 release=1
21 # Set 'outdir' for a nice and well-organized output directory
22 outdir="${outdir}/${arch}/x-libs"
24 tarname=${program}-${version}.tar.xz
26 # Remote source(s)
27 fetch="http://ftp.gnome.org/pub/gnome/sources/libwnck/${version%.*}/$tarname"
29 description="
30 A Window Navigator Construction Kit.
32 The libwnck package contains a Window Navigator Construction Kit.
35 homepage=http://www.gnome.org
36 license=LGPLv2+
38 # Source documentation
39 docs="AUTHORS COPYING ChangeLog HACKING NEWS README"
40 docsdir="${docdir}/${program}-${version}"
42 build()
44     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     # Move locale files to the corresponding location
70 #    mv "${destdir}/usr/lib/locale/" "${destdir}/usr/lib${libSuffix}/"
71 #    rmdir "${destdir}/usr/lib" || true
73     # Copy documentation
74     mkdir -p "${destdir}${docsdir}"
75     cp -p $docs "${destdir}${docsdir}"