mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-02-02 22:41:33 +01:00
29 lines
926 B
Plaintext
29 lines
926 B
Plaintext
# Contributor: Duncan Bellamy <dunk@denkimushi.com>
|
|
# Maintainer: Duncan Bellamy <dunk@denkimushi.com>
|
|
pkgname=py3-easygui
|
|
pkgver=0.98.2
|
|
pkgrel=0
|
|
pkgdesc="easy GUI programming in Python"
|
|
url="https://github.com/robertlugg/easygui"
|
|
arch="noarch"
|
|
license="BSD-3-Clause"
|
|
depends="python3"
|
|
makedepends="py3-setuptools"
|
|
source="https://files.pythonhosted.org/packages/source/e/easygui/easygui-$pkgver.tar.gz
|
|
readme.patch"
|
|
options="!check" #test files are not in pypi archive
|
|
builddir="$srcdir/easygui-$pkgver"
|
|
|
|
build() {
|
|
python3 setup.py build
|
|
}
|
|
|
|
package() {
|
|
python3 setup.py install --prefix=/usr --root="$pkgdir"
|
|
}
|
|
|
|
sha512sums="
|
|
d313bab3432cab6d4d7d91e4892bb00f2587c33492da5bdface4eccbbae4e53da1f0af893450093ea04df187605e6fac7e4600c4718e954a81ca40da130885dd easygui-0.98.2.tar.gz
|
|
837e7b7503778ed430c4422b6ec493319f742e4f46a273e51fe29bd523638481c8225a04824730d2d5c45ea3bf2c6db24d782fd1cecd015aef87558dab5cdd31 readme.patch
|
|
"
|