Lakka-LibreELEC/packages/python/system/dbussy/package.mk
Rudi Heitbaum 8623218d4d dbussy: update to githash 691a8a8a 2022-12-21
commit log:
- Threads for async calls should be daemon threads.
- 691a8a8a19
2023-01-03 11:50:21 +00:00

25 lines
727 B
Makefile

# SPDX-License-Identifier: GPL-2.0-or-later
# Copyright (C) 2020-present Team LibreELEC (https://libreelec.tv)
PKG_NAME="dbussy"
PKG_VERSION="691a8a8a1914416b7ea1545fb931d74f2e381f09"
PKG_SHA256="857104ef2fd1978323d7c87b32c753d2d178b79adbd13f52cea23511f5195ded"
PKG_LICENSE="LGPLv2.1+"
PKG_SITE="https://gitlab.com/ldo/dbussy"
PKG_URL="https://github.com/ldo/${PKG_NAME}/archive/${PKG_VERSION}.tar.gz"
PKG_DEPENDS_TARGET="toolchain Python3 dbus"
PKG_LONGDESC="DBussy is a wrapper around libdbus, written in pure Python"
PKG_TOOLCHAIN="manual"
make_target() {
python3 setup.py build
}
makeinstall_target() {
python3 setup.py install --root=${INSTALL} --prefix=/usr
}
post_makeinstall_target() {
python_remove_source
}