update: neofetch 7.1.0-matter4

This commit is contained in:
ngn
2024-08-22 08:56:20 +03:00
parent 3d6f9e9eeb
commit 0d20477771
4 changed files with 25 additions and 14 deletions

View File

@ -1,18 +1,19 @@
NAME="pypi-pycairo"
DESC="PyCairo provides bindings to Cairo"
DESC="Python bindings for the cairo graphics library"
VERSION="1.18.2"
FILES=("https://github.com/pygobject/pycairo/releases/download/v${VERSION}/pycairo-${VERSION}.tar.gz")
HASHES=("be2ba51f234270dec340f28f1695a95e")
DEPENDS=("python3" "cairo")
BUILD=("meson" "sphinx")
PACKAGE() {
tar xf "${NAME}-${VERSION}.tar.gz"
cd "${NAME}-${VERSION}"
tar xf "pycairo-${VERSION}.tar.gz"
cd "pycairo-${VERSION}"
python3 -m build --wheel --no-isolation
python3 -m installer --destdir="${ROOTDIR}" dist/*.whl
cd .. && rm -rf "${NAME}-${VERSION}"
cd .. && rm -rf "pycairo-${VERSION}"
}