aboutsummaryrefslogtreecommitdiffstats
path: root/testing/py3-pyautogui/APKBUILD
blob: 5620bc9b5970a4108a96efa23c35cdd168384d45 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# Contributor: Ivan Tham <pickfire@riseup.net>
# Maintainer: Ivan Tham <pickfire@riseup.net>
pkgname=py3-pyautogui
_pkgname=PyAutoGUI
# upstream does not tag releases https://github.com/asweigart/pyautogui/issues/270
_commit=61f14d7632f80267232098edd71be98a30c1339b
pkgver=0.9.37
pkgrel=2
pkgdesc="A cross-platform Python module for GUI automation for human beings"
url="https://pyautogui.readthedocs.io/"
arch="noarch"
license="BSD-3-Clause"
depends="py3-xlib py3-pillow"
makedepends="py3-setuptools xvfb-run"
source="$_pkgname-$_commit.tar.gz::https://github.com/asweigart/pyautogui/archive/$_commit.tar.gz"
builddir="$srcdir/pyautogui-$_commit"

replaces="py-pyautogui" # Backwards compatibility
provides="py-pyautogui=$pkgver-r$pkgrel" # Backwards compatibility

build() {
	xvfb-run python3 setup.py build
}

check() {
	python3 setup.py check
}

package() {
	python3 setup.py install --prefix=/usr --root="$pkgdir"
}

sha512sums="b26bee4684f9b2cb5a1ba376faceb879251dcebc7a93ef931a6b273bbebbf1c4151834035f5a52ffad1859d131d1490ad42e6b6c0a77304fd8afb316c96cde1d  PyAutoGUI-61f14d7632f80267232098edd71be98a30c1339b.tar.gz"