recipes: Adjust recipe format (minor changes)
[dragora.git] / recipes / libs / dbus_glib / recipe
blob4fc5521a689d3ef2cde750db67873ab5d40ebbc4
1 # Build recipe for D-Bus GLib.
3 # Copyright (C) 2018, MMPG <mmpg@vp.pl>
4 # Copyright (c) 2018, 2020 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 pkgname=dbus_glib
23 version=0.110
24 release=3
26 # Define a category for the output of the package name
27 pkgcategory=libs
29 tarname=${program}-${version}.tar.gz
31 # Remote source(s)
32 fetch=http://dbus.freedesktop.org/releases/dbus-glib/$tarname
34 description="
35 Glib bindings for D-Bus.
37 The dbus-glib package contains GLib interfaces to the D-Bus API.
40 homepage=http://www.freedesktop.org/wiki/Software/dbus/
41 license="AFLv2.1 | GPLv2+"
43 # Source documentation
44 docs="AUTHORS COPYING HACKING NEWS README"
45 docsdir="${docdir}/${pkgname}-${version}"
47 build()
49     unpack "${tardir}/$tarname"
50     
51     cd "$srcdir"
53     # Set sane permissions
54     chmod -R u+w,go-w,a+rX-s .
55     
56     ./configure CFLAGS="$QICFLAGS" LDFLAGS="$QILDFLAGS" \
57      $configure_args \
58      --libdir=/usr/lib${libSuffix} \
59      --mandir=$mandir \
60      --enable-static=no \
61      --enable-shared=yes \
62      --enable-bash-completion \
63      --build="$(gcc -dumpmachine)"
64     
65     make -j${jobs} V=1
66     make -j${jobs} V=1 \
67      completiondir=/usr/share/bash-completion/completions \
68      DESTDIR="$destdir" \
69      install-strip
71     (
72         cd "${destdir}/usr/share/bash-completion/completions"
73         mv -f dbus-bash-completion.sh dbus-glib
74     )
76     # Compress manpages
77     lzip -9 "${destdir}/${mandir}/"/man?/*.?
78     
79     # Copy documentation
80     mkdir -p "${destdir}${docsdir}"
81     cp -p $docs "${destdir}${docsdir}"