1
0
Fork 0
mirror of https://gitlab.alpinelinux.org/alpine/aports.git synced 2025-07-21 18:25:41 +03:00
aports/community/py3-pywal/APKBUILD
psykose deb62258ec */*: set --skip-build for python installs
this marginally increases install speed by not checking if it needs a rebuild.
also remove --prefix=/usr as it defaults to /usr already.

might break a build or two, will fix later
2023-01-10 04:19:31 +01:00

35 lines
949 B
Text

# Contributor: Justin Berthault <justin.berthault@zaclys.net>
# Maintainer: Justin Berthault <justin.berthault@zaclys.net>
pkgname=py3-pywal
pkgver=3.3.0
pkgrel=5
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
fix-tmp-dir.patch
"
builddir="$srcdir/pywal-$pkgver"
build() {
python3 setup.py build
}
check() {
python3 setup.py test
}
package() {
python3 setup.py install --skip-build --root="$pkgdir"
}
sha512sums="
e8469ae1cb6596e78e9100907115e2075cfe6f984751e9972c36e60e27d1c379b4e8d2c5ef90becb689bcfcc1efb9702392e64602dbb93f903e12f3881ed42ce pywal-3.3.0.tar.gz
12d5f79025af53f4dc4bacbdd9c6c6abfc648de81cd69c32a6c29f90870ce82725c5aef8ae40290d8e52f3088a34229fc64f0097b66f7c9cdd45c9955184b650 fix-tmp-dir.patch
"