blob: 6f9e4b993c1e3ac5eadc28577a395d5f560dd9c6 (
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
26
27
28
|
# Maintainer: Mark Wagie <mark dot wagie at tutanota dot com>
pkgname=vimix-gtk-themes
_pkgver=2021-08-17
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=('GPL3')
depends=('gtk3')
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'
'plank: for Plank theme')
options=('!strip')
source=("$pkgname-$pkgver.tar.gz::https://github.com/vinceliuice/$pkgname/archive/$_pkgver.tar.gz")
sha256sums=('5f34c86ec23c5d826ee79db68a38bb2f6a970ed865ebe81e5dc09df7fa506444')
package() {
cd "$pkgname-$_pkgver"
install -d "$pkgdir/usr/share/themes"
./install.sh -a -d "$pkgdir/usr/share/themes"
# Plank theme
install -Dm644 src/plank/dock.theme -t "$pkgdir/usr/share/plank/themes/vimix"
}
|