30 lines
783 B
Bash
30 lines
783 B
Bash
# Template file for 'python-xlib'
|
|
pkgname=python-xlib
|
|
version=0.21
|
|
revision=1
|
|
noarch=yes
|
|
build_style=python-module
|
|
hostmakedepends="python-setuptools python3-setuptools"
|
|
depends="python-six"
|
|
pycompile_module="Xlib"
|
|
short_desc="Fully functional X client library for Python2"
|
|
maintainer="Enno Boland <gottox@voidlinux.eu>"
|
|
license="LGPL-2.1"
|
|
homepage="https://github.com/python-xlib/python-xlib"
|
|
distfiles="${homepage}/releases/download/${version}/python-xlib-${version}.tar.bz2"
|
|
checksum=25aad0056172920552c01a163e979b02336abaf47b0792dae9c93ecb29500431
|
|
|
|
pre_build() {
|
|
sed -i '/setup_requires/d' setup.py
|
|
}
|
|
|
|
python3-xlib_package() {
|
|
noarch=yes
|
|
depends="python3-six"
|
|
pycompile_module="Xlib"
|
|
short_desc="${short_desc/Python2/Python3}"
|
|
pkg_install() {
|
|
vmove usr/lib/python3*
|
|
}
|
|
}
|