recipes: Rename 'pkghashtag' variable to 'pkgcategory'
[dragora.git] / recipes / python / dbus_python / recipe
blob584527a6f00b788912dcb1a2acdb81ac71e94211
1 # Build recipe for dbus-python.
3 # Copyright (C) 2020 Matias Fonzo, <selk@dragora.org>.
5 # Licensed under the Apache License, Version 2.0 (the "License");
6 # you may not use this file except in compliance with the License.
7 # You may obtain a copy of the License at
9 #    http://www.apache.org/licenses/LICENSE-2.0
11 # Unless required by applicable law or agreed to in writing, software
12 # distributed under the License is distributed on an "AS IS" BASIS,
13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 # See the License for the specific language governing permissions and
15 # limitations under the License.
17 program=dbus-python
18 pkgname=dbus_python
19 version=1.2.16
20 release=1
22 # Define a category for the output of the package name
23 pkgcategory=python
25 tarname=${program}-${version}.tar.gz
27 # Remote source(s)
28 fetch=http://dbus.freedesktop.org/releases/${program}/$tarname
30 description="
31 Python bindings for D-Bus.
33 dbus_python provides Python bindings to the D-Bus API interface.
36 homepage=http://www.freedesktop.org/wiki/Software/DBusBindings
37 license="MIT Expat variant"
39 docs="AUTHORS CONTRIBUTING.md COPYING ChangeLog NEWS PKG-INFO README"
40 docsdir="${docdir}/${pkgname}-${version}"
42 build()
44     set -e
46     unpack "${tardir}/$tarname"
48     cd "$srcdir"
50     # Set sane permissions
51     chmod -R u+w,go-w,a+rX-s .
53     rm -rf python3-build
54     mkdir python3-build
55     cd python3-build
56     ../configure PYTHON=/usr/bin/python3 \
57     CFLAGS="$QICFLAGS" LDFLAGS="$QILDFLAGS" \
58      $configure_args \
59      --enable-static=no \
60      --enable-shared=yes \
61      --docdir=$docsdir
62     make -j${jobs} V=1
63     cd ..
64     make -j${jobs} V=1 -C python3-build DESTDIR="$destdir" install
66     # Copy documentation
67     mkdir -p "${destdir}${docsdir}"
68     cp -p $docs "${destdir}${docsdir}"