blob: 02a619178891995d6f6e222eea265b4f5074a2b9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
# Maintainer: Mark Wagie <mark dot wagie at proton dot me>
pkgname=vimix-gtk-themes
_pkgver=2024-04-20
pkgver=${_pkgver//-/.}
pkgrel=1
pkgdesc="A flat Material Design theme for GTK 3, GTK 2, GNOME Shell, etc."
arch=('any')
url="https://vinceliuice.github.io/theme-vimix.html"
license=('GPL-3.0-or-later')
makedepends=('sassc')
optdepends=('gtk-engine-murrine: GTK2 theme support'
'gtk-engines: GTK2 theme support'
'kvantum-theme-vimix: Matching Kvantum theme'
'vimix-icon-theme: Matching icon theme'
'vimix-cursors: Matching cursor theme')
options=('!strip')
install="$pkgname.install"
source=("$pkgname-$_pkgver.tar.gz::https://github.com/vinceliuice/vimix-gtk-themes/archive/$_pkgver.tar.gz")
sha256sums=('485de0ff418424587871e6000774ced40ca04a704c381504fccdddca07c66f9d')
package() {
cd "Vimix-gtk-themes-$_pkgver"
install -d "$pkgdir/usr/share/themes"
./install.sh -t all -s all -d "$pkgdir/usr/share/themes"
}
|