recipes: Remove extra stripping from install-strip automake target
[dragora.git] / recipes / libs / dbus-glib / recipe
blob7072eace31b5143f4b6583c948fa7d914e7b2771
1 # Build recipe for D-Bus GLib.
3 # Copyright (C) 2018, MMPG <mmpg@vp.pl>
4 # Copyright (c) 2018, 2020, 2021 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 # Exit immediately on any error
19 set -e
21 program=dbus-glib
22 version=0.110
23 release=4
25 # Define a category for the output of the package name
26 pkgcategory=libs
28 tarname=${program}-${version}.tar.gz
30 # Remote source(s)
31 fetch=https://dbus.freedesktop.org/releases/dbus-glib/$tarname
33 description="
34 Glib bindings for D-Bus.
36 The dbus-glib package contains GLib interfaces to the D-Bus API.
39 homepage=https://www.freedesktop.org/wiki/Software/dbus/
40 license="AFLv2.1 | GPLv2+"
42 # Source documentation
43 docs="AUTHORS COPYING HACKING NEWS README"
44 docsdir="${docdir}/${program}-${version}"
46 build()
48     unpack "${tardir}/$tarname"
49     
50     cd "$srcdir"
52     # Set sane permissions
53     chmod -R u+w,go-w,a+rX-s .
54     
55     ./configure CPPFLAGS="$QICPPFLAGS" CFLAGS="$QICFLAGS" LDFLAGS="$QILDFLAGS" \
56      $configure_args \
57      --libdir=/usr/lib${libSuffix} \
58      --mandir=$mandir \
59      --enable-static=no \
60      --enable-shared=yes \
61      --enable-bash-completion \
62      --build="$(gcc -dumpmachine)"
63     
64     make -j${jobs} V=1
65     make -j${jobs} V=1 \
66      completiondir=/usr/share/bash-completion/completions \
67      DESTDIR="$destdir" \
68      install
70     (
71         cd "${destdir}/usr/share/bash-completion/completions"
72         mv -f dbus-bash-completion.sh dbus-glib
73     )
75     # Compress manpages
76     lzip -9 "${destdir}/${mandir}/"/man?/*.?
77     
78     # Copy documentation
79     mkdir -p "${destdir}${docsdir}"
80     cp -p $docs "${destdir}${docsdir}"