recipes: Rename 'pkghashtag' variable to 'pkgcategory'
[dragora.git] / recipes / libs / dbus_glib / recipe
blob0763fe670cd0749b3c21600761b87ce97c53860e
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 program=dbus-glib
19 pkgname=dbus_glib
20 version=0.110
21 release=3
23 # Define a category for the output of the package name
24 pkgcategory=libs
26 tarname=${program}-${version}.tar.gz
28 # Remote source(s)
29 fetch=http://dbus.freedesktop.org/releases/dbus-glib/$tarname
31 description="
32 Glib bindings for D-Bus.
34 The dbus-glib package contains GLib interfaces to the D-Bus API.
37 homepage=http://www.freedesktop.org/wiki/Software/dbus/
38 license="AFLv2.1 | GPLv2+"
40 # Source documentation
41 docs="AUTHORS COPYING HACKING NEWS README"
42 docsdir="${docdir}/${pkgname}-${version}"
44 build()
46     set -e
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 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="$(cc -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-strip
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}"