1
0
Fork 0
mirror of https://gitlab.alpinelinux.org/alpine/aports.git synced 2025-07-23 03:05:48 +03:00
aports/community/py3-pywal/APKBUILD
2021-08-04 09:42:59 +00:00

34 lines
829 B
Text

# Contributor: Justin Berthault <justin.berthault@zaclys.net>
# Maintainer: Justin Berthault <justin.berthault@zaclys.net>
pkgname=py3-pywal
pkgver=3.3.0
pkgrel=2
pkgdesc="Generate and change colorschemes on the fly"
url="https://github.com/dylanaraps/pywal/"
arch="noarch"
license="MIT"
depends="
imagemagick
python3
"
makedepends="py3-setuptools"
source="https://files.pythonhosted.org/packages/source/p/pywal/pywal-$pkgver.tar.gz"
builddir="$srcdir/pywal-$pkgver"
case "$CARCH" in
mips*) options="!check";;
esac
build() {
python3 setup.py build
}
check() {
python3 setup.py test
}
package() {
python3 setup.py install --prefix=/usr --root="$pkgdir"
}
sha512sums="e8469ae1cb6596e78e9100907115e2075cfe6f984751e9972c36e60e27d1c379b4e8d2c5ef90becb689bcfcc1efb9702392e64602dbb93f903e12f3881ed42ce pywal-3.3.0.tar.gz"