12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- # Build recipe for pygobject.
- #
- # Copyright (C) 2022 Matias Fonzo, <selk@dragora.org>.
- #
- # Licensed under the Apache License, Version 2.0 (the "License");
- # you may not use this file except in compliance with the License.
- # You may obtain a copy of the License at
- #
- # http://www.apache.org/licenses/LICENSE-2.0
- #
- # Unless required by applicable law or agreed to in writing, software
- # distributed under the License is distributed on an "AS IS" BASIS,
- # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- # See the License for the specific language governing permissions and
- # limitations under the License.
- # Exit immediately on any error
- set -e
- program=pygobject
- version=20220808_4b421597
- release=1
- pkgname=python-${program}
- # Define a category for the output of the package name
- pkgcategory=python
- tarname=${program}-${version}.tar.lz
- # Remote source(s)
- fetch="
- https://dragora.mirror.garr.it/current/sources/$tarname
- rsync://rsync.dragora.org/current/sources/$tarname
- "
- description="
- Python bindings for GObject.
- PyGObject is a Python package which provides bindings for GObject based
- libraries such as GTK, GStreamer, WebKitGTK, GLib, GIO and many more.
- "
- homepage=https://wiki.gnome.org/Projects/PyGObject
- license=LGPLv2.1
- docs="COPYING NEWS README.rst"
- docsdir="${docdir}/${program}-${version}"
- build()
- {
- unpack "${tardir}/$tarname"
- cd "$srcdir"
- # Set sane permissions
- chmod -R u+w,go-w,a+rX-s .
- python3 setup.py build
- python3 setup.py install --prefix=/usr --root="$destdir" --optimize=1
- # Copy documentation
- mkdir -p "${destdir}/$docsdir"
- cp -p $docs "${destdir}/$docsdir"
- }
|