recipes: x-libs/libxklavier: added version 5.4
[dragora.git] / recipes / x-libs / libxklavier / recipe
blob3ec5312de25fe894924e639bc95d2b2c04e94276
1 # Build recipe for libxklavier.
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=libxklavier
18 version=5.4
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.bz2
26 # Remote source(s)
27 fetch=http://people.freedesktop.org/~svu/$tarname
29 description="
30 API for the X Keyboard Extension.
32 Libxklavier is a library providing high-level API for the
33 X Keyboard Extension known as XKB.
36 homepage=http://www.freedesktop.org/software/libxklavier
37 license=LGPLv2+
39 docs="AUTHORS COPYING* CREDITS ChangeLog 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     ./configure CFLAGS="$QICFLAGS" LDFLAGS="$QILDFLAGS" \
54      $configure_args \
55      --libdir=/usr/lib${libSuffix} \
56      --enable-static=no \
57      --enable-shared=yes \
58      --enable-introspection=yes \
59      --enable-vala=yes \
60      --enable-xmodmap-support
62     make -j${jobs} V=1
63     make -j${jobs} V=1 DESTDIR="$destdir" install-strip
65     # Copy documentation
66     mkdir -p "${destdir}${docsdir}"
67     cp -p $docs "${destdir}${docsdir}"