aboutsummaryrefslogtreecommitdiffstats
path: root/testing/py3-pyautogui/APKBUILD
blob: 4f3642a19a1daf2c5beb148cf6c6f65aaf39e869 (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=1ac16fcb93e004e62893d133e09bfbd39857b563
pkgver=0.9.49
pkgrel=0
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="105f0b337e3d49db0feafabdaf7a00e53de2f278e906320479c14b97a3c15c15114ae47e8edd69d798f36eb682ae801cf0985056c4a04e0dc759c216c3366195  PyAutoGUI-1ac16fcb93e004e62893d133e09bfbd39857b563.tar.gz"