diff options
author | Oskar Grunning | 2021-11-01 16:10:27 +0100 |
---|---|---|
committer | Oskar Grunning | 2021-11-01 16:10:27 +0100 |
commit | 6a7ff9bc5791d4b6d1d3b7e074e6f4db9bda609c (patch) | |
tree | 424cc7ddbd69a77038719ce9e9e22f01310751f6 | |
parent | 42f5db43d91bb9cdd4da223c7c08bf239c4129a0 (diff) | |
download | aur-6a7ff9bc5791d4b6d1d3b7e074e6f4db9bda609c.tar.gz |
fix: update makedepends and install all sizes
-rw-r--r-- | .SRCINFO | 6 | ||||
-rw-r--r-- | PKGBUILD | 11 |
2 files changed, 11 insertions, 6 deletions
@@ -1,18 +1,18 @@ pkgbase = vimix-gtk-themes-git pkgdesc = A flat Material Design theme for GTK 3, GTK 2 and Gnome-Shell - pkgver = r358.8b76023 + pkgver = r464.f83a116 pkgrel = 1 url = https://github.com/vinceliuice/vimix-gtk-themes arch = any license = GPL3 makedepends = git + makedepends = sassc depends = gtk3 optdepends = gtk-engine-murrine: for gtk2 themes optdepends = gtk-engines: for gtk2 themes - provides = vimix-gtk-themes=r358.8b76023 + provides = vimix-gtk-themes=r464.f83a116 conflicts = vimix-gtk-themes source = git+https://github.com/vinceliuice/vimix-gtk-themes.git sha256sums = SKIP pkgname = vimix-gtk-themes-git - @@ -1,7 +1,7 @@ # Maintainer: sQVe <oskargrunning@gmail.com> pkgname=vimix-gtk-themes-git -pkgver=r358.8b76023 +pkgver=r464.f83a116 pkgrel=1 pkgdesc='A flat Material Design theme for GTK 3, GTK 2 and Gnome-Shell' url='https://github.com/vinceliuice/vimix-gtk-themes' @@ -10,7 +10,7 @@ license=('GPL3') depends=('gtk3') optdepends=('gtk-engine-murrine: for gtk2 themes' 'gtk-engines: for gtk2 themes') -makedepends=('git') +makedepends=('git' 'sassc') source=('git+https://github.com/vinceliuice/vimix-gtk-themes.git') sha256sums=('SKIP') provides=("vimix-gtk-themes=${pkgver}") @@ -25,5 +25,10 @@ pkgver() { package() { cd "${_gitname}" install -dm755 "${pkgdir}/usr/share/themes" - ./install.sh -a -d "$pkgdir/usr/share/themes" + + # Install standard sizes. + ./install.sh --all --size standard --dest "$pkgdir/usr/share/themes" + + # Install compact sizes. + ./install.sh --all --size compact --dest "$pkgdir/usr/share/themes" } |