mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
38 lines
1 KiB
Bash
38 lines
1 KiB
Bash
# Maintainer: Felix Yan <felixonmars@archlinux.org>
|
|
# Contributor: Roger Duran <rogerduran@gmail.com>
|
|
|
|
# ALARM: dequis <dx@dxzone.com.ar>
|
|
# - remove haskell-xcffib dependency by using the pypi release instead
|
|
|
|
pkgname=python-xcffib
|
|
pkgver=1.5.0
|
|
pkgrel=1
|
|
pkgdesc="Python3 drop in replacement for xpyb, an XCB python binding"
|
|
arch=('any')
|
|
url="https://pypi.python.org/pypi/xcffib"
|
|
license=('Apache')
|
|
depends=('python-cffi' 'libxcb')
|
|
makedepends=('python-setuptools')
|
|
checkdepends=('python-pytest' 'xorg-server-xvfb' 'xorg-xeyes')
|
|
_name=${pkgname#python-}
|
|
source=("https://files.pythonhosted.org/packages/source/${_name::1}/$_name/$_name-$pkgver.tar.gz")
|
|
sha512sums=('aaa426b57d0d8dc45cb6a2036c862af6308fb5781667b8dba3f5ff399fe5e15912860d0bb696ac09f1efd4ffbbdaf7f555ef76039bd660f36f5c6179535b654f')
|
|
|
|
prepare() {
|
|
touch xcffib-$pkgver/test/__init__.py
|
|
}
|
|
|
|
build() {
|
|
cd xcffib-$pkgver
|
|
python setup.py build
|
|
}
|
|
|
|
check() {
|
|
cd xcffib-$pkgver
|
|
xvfb-run pytest
|
|
}
|
|
|
|
package() {
|
|
cd xcffib-$pkgver
|
|
python setup.py install --root="$pkgdir/" --optimize=1
|
|
}
|