diff options
author | Julian Hornich | 2015-12-29 15:30:06 +0100 |
---|---|---|
committer | Julian Hornich | 2015-12-29 15:30:06 +0100 |
commit | c519e1b4c05a9c2fd2a4790a4ec7f201a560bb9c (patch) | |
tree | 47154b3d5a5d976b0a7ca92387a187156a083463 | |
parent | 42f58f9fede22e1b1d5c545504aeb7ba9657fb2f (diff) | |
download | aur-c519e1b4c05a9c2fd2a4790a4ec7f201a560bb9c.tar.gz |
updated package for recent sass changes
-rw-r--r-- | .SRCINFO | 4 | ||||
-rw-r--r-- | PKGBUILD | 12 |
2 files changed, 13 insertions, 3 deletions
@@ -1,6 +1,8 @@ +# Generated by mksrcinfo v8 +# Tue Dec 29 14:30:03 UTC 2015 pkgbase = gnome-shell-theme-viva-git pkgdesc = A custom gnome-shell theme named viva (blue and orange version) - pkgver = 3.18.1.112.f4fc574 + pkgver = 3.18.3.132.d2127f5 pkgrel = 1 url = https://github.com/vivaeltopo/gnome-shell-theme-viva arch = any @@ -1,8 +1,8 @@ # Maintainer: Julian Hornich <vivaeltopo@googlemail.com> pkgname=gnome-shell-theme-viva-git -_pkgver=3.18.1 -pkgver=3.18.1.112.f4fc574 +_pkgver=3.18.3 +pkgver=3.18.3.132.d2127f5 pkgrel=1 pkgdesc="A custom gnome-shell theme named viva (blue and orange version)" arch=('any') @@ -27,6 +27,10 @@ package() { cp -r gnome-shell ${pkgdir}/usr/share/themes/viva-orange/ chmod -R 755 ${pkgdir}/usr/share/themes/viva-orange + # cleanup + cd ${pkgdir}/usr/share/themes/viva-orange/gnome-shell/ + rm -rf gnome-classic.css *.scss styles + # blue version cd $srcdir/gnome-shell-theme-viva make blue @@ -34,4 +38,8 @@ package() { mkdir -p ${pkgdir}/usr/share/themes/viva-blue cp -r gnome-shell ${pkgdir}/usr/share/themes/viva-blue/ chmod -R 755 ${pkgdir}/usr/share/themes/viva-blue + + # cleanup + cd ${pkgdir}/usr/share/themes/viva-blue/gnome-shell/ + rm -rf gnome-classic.css *.scss styles } |