sources: SOURCELIST.txt: sort list
[dragora.git] / recipes / libs / dbus-glib / recipe
blob05b0d71dd500f991fa9de9bfdf535e8184445d88
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.
18 program=dbus-glib
19 version=0.110
20 release=2
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
30 # Remote source(s)
31 fetch=http://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=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}"
46 build()
48     set -e
50     unpack "${tardir}/$tarname"
51     
52     cd "$srcdir"
54     # Set sane permissions
55     chmod -R u+w,go-w,a+rX-s .
56     
57     ./configure CFLAGS="$QICFLAGS" LDFLAGS="$QILDFLAGS" \
58      $configure_args \
59      --libdir=/usr/lib${libSuffix} \
60      --mandir=$mandir \
61      --enable-static=no \
62      --enable-shared=yes \
63      --build="$(cc -dumpmachine)"
64     
65     make -j${jobs} V=1
66     make -j${jobs} V=1 DESTDIR="$destdir" install-strip
68     # Compress manpages
69     lzip -9 "${destdir}/${mandir}/"/man?/*.?
70     
71     # Copy documentation
72     mkdir -p "${destdir}${docsdir}"
73     cp -p $docs "${destdir}${docsdir}"