diff options
author | luisbocanegra | 2022-04-12 16:26:23 -0500 |
---|---|---|
committer | luisbocanegra | 2022-04-12 16:26:23 -0500 |
commit | fabc008cc7d68d30bdc22b2272bc80833ee43d58 (patch) | |
tree | 3a7ba534974a84e8a45a253a4cb5a27271d2b2be | |
parent | 1a0610901cab6bb914fb7c6a6dc508799444948b (diff) | |
download | aur-fabc008cc7d68d30bdc22b2272bc80833ee43d58.tar.gz |
Update AUR package
-rw-r--r-- | .SRCINFO | 9 | ||||
-rw-r--r-- | PKGBUILD | 11 |
2 files changed, 12 insertions, 8 deletions
@@ -1,6 +1,6 @@ pkgbase = kde-material-you-colors - pkgdesc = Automatic KDE Material You Colors Generator from your wallpaper - pkgver = 0.3.0BETA + pkgdesc = Automatic Material You Colors Generator from your wallpaper for the Plasma Desktop + pkgver = 0.4.0BETA pkgrel = 1 url = https://github.com/luisbocanegra/kde-material-you-colors arch = x86_64 @@ -8,8 +8,9 @@ pkgbase = kde-material-you-colors depends = dbus-python depends = python-numpy optdepends = python-colr: colored hex codes printing + optdepends = python-pywal: theme other programs using Material You Colors options = !strip - source = kde-material-you-colors-0.3.0BETA.tar.gz::https://github.com/luisbocanegra/kde-material-you-colors/archive/v0.3.0BETA.tar.gz - sha256sums = dc584655634e988cd6ed38068976e21a752f1363a27c3a234db0a0883652f8ae + source = kde-material-you-colors-0.4.0BETA.tar.gz::https://github.com/luisbocanegra/kde-material-you-colors/archive/v0.4.0BETA.tar.gz + sha256sums = 7e8408dbd92a6ef71de8ce16d0162e35e2650a5853b02aecc033e1047320dec2 pkgname = kde-material-you-colors @@ -1,16 +1,18 @@ # Maintainer: luisbocanegra <luis.bocanegra0 at protonmail dot com> pkgname=kde-material-you-colors -pkgver=0.3.0BETA +pkgver=0.4.0BETA pkgrel=1 -pkgdesc="Automatic KDE Material You Colors Generator from your wallpaper" +pkgdesc="Automatic Material You Colors Generator from your wallpaper for the Plasma Desktop" arch=('x86_64') url="https://github.com/luisbocanegra/kde-material-you-colors" license=('APACHE') depends=("dbus-python" "python-numpy") -optdepends=('python-colr: colored hex codes printing') +optdepends=('python-colr: colored hex codes printing' + 'python-pywal: theme other programs using Material You Colors' +) options=('!strip') source=("${pkgname}-${pkgver}.tar.gz::$url/archive/v${pkgver}.tar.gz") -sha256sums=('dc584655634e988cd6ed38068976e21a752f1363a27c3a234db0a0883652f8ae') +sha256sums=('7e8408dbd92a6ef71de8ce16d0162e35e2650a5853b02aecc033e1047320dec2') build() { cd "${pkgname}-${pkgver}" @@ -31,3 +33,4 @@ package() { ln -s /usr/lib/${pkgname}/material-color-utility-bin ${pkgdir}/usr/bin/material-color-utility install -Dm644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE } + |