mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-18 23:22:24 +01:00
59 lines
1.4 KiB
Plaintext
59 lines
1.4 KiB
Plaintext
# Contributor: Ivan Tham <pickfire@riseup.net>
|
|
# Maintainer: Ivan Tham <pickfire@riseup.net>
|
|
pkgname=py-pyautogui
|
|
_pkgname=PyAutoGUI
|
|
# upstream does not tag releases https://github.com/asweigart/pyautogui/issues/270
|
|
_commit=61f14d7632f80267232098edd71be98a30c1339b
|
|
pkgver=0.9.37
|
|
pkgrel=1
|
|
pkgdesc="A cross-platform Python module for GUI automation for human beings"
|
|
url="https://pyautogui.readthedocs.io/"
|
|
arch="noarch"
|
|
license="BSD"
|
|
depends="py-xlib py-pillow"
|
|
makedepends="python2-dev python3-dev py-setuptools xvfb"
|
|
subpackages="py3-$_pkgname:_py3 py2-$_pkgname:_py2"
|
|
source="$_pkgname-$_commit.tar.gz::https://github.com/asweigart/pyautogui/archive/$_commit.tar.gz"
|
|
builddir="$srcdir/pyautogui-$_commit"
|
|
|
|
build() {
|
|
cd "$builddir"
|
|
Xvfb :1 &
|
|
export DISPLAY=:1
|
|
python2 setup.py build
|
|
python3 setup.py build
|
|
}
|
|
|
|
check() {
|
|
cd "$builddir"
|
|
python2 setup.py check
|
|
python3 setup.py check
|
|
}
|
|
|
|
package() {
|
|
mkdir -p "$pkgdir"
|
|
}
|
|
|
|
_py2() {
|
|
replaces="$pkgname"
|
|
depends="${depends//py-/py2-}"
|
|
_py python2
|
|
}
|
|
|
|
_py3() {
|
|
depends="${depends//py-/py3-}"
|
|
_py python3
|
|
}
|
|
|
|
_py() {
|
|
local python="$1"
|
|
pkgdesc="$pkgdesc (for $python)"
|
|
depends="$depends $python"
|
|
install_if="$pkgname=$pkgver-r$pkgrel $python"
|
|
|
|
cd "$builddir"
|
|
$python setup.py install --prefix=/usr --root="$subpkgdir"
|
|
}
|
|
|
|
sha512sums="b26bee4684f9b2cb5a1ba376faceb879251dcebc7a93ef931a6b273bbebbf1c4151834035f5a52ffad1859d131d1490ad42e6b6c0a77304fd8afb316c96cde1d PyAutoGUI-61f14d7632f80267232098edd71be98a30c1339b.tar.gz"
|