1 # Build recipe for D-Bus GLib.
3 # Copyright (C) 2018, MMPG <mmpg@vp.pl>
4 # Copyright (c) 2018 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.
22 # Set 'outdir' for a nice and well-organized output directory
23 outdir="${outdir}/${arch}/libs"
25 # Set a custom package name preventing its replacement
26 pkgname="$(echo $program | tr - _)"
28 tarname=${program}-${version}.tar.gz
31 fetch=http://dbus.freedesktop.org/releases/dbus-glib/$tarname
34 Glib bindings for D-Bus.
36 The dbus-glib package contains GLib interfaces to the D-Bus API.
39 homepage=http://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}"
50 unpack "${tardir}/$tarname"
54 # Set sane permissions
55 chmod -R u+w,go-w,a+rX-s .
57 ./configure CFLAGS="$QICFLAGS" LDFLAGS="$QILDFLAGS" \
59 --libdir=/usr/lib${libSuffix} \
63 --build="$(cc -dumpmachine)"
66 make -j${jobs} V=1 DESTDIR="$destdir" install-strip
69 lzip -9 "${destdir}/${mandir}/"/man?/*.?
72 mkdir -p "${destdir}${docsdir}"
73 cp -p $docs "${destdir}${docsdir}"