Skip to content

Instantly share code, notes, and snippets.

@bbidulock
Created July 6, 2015 05:33
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bbidulock/b5ed3fe0c98f28e46125 to your computer and use it in GitHub Desktop.
Save bbidulock/b5ed3fe0c98f28e46125 to your computer and use it in GitHub Desktop.
PKGBUILD and install file for gnome-colors-icon-theme
post_install() {
for theme in gnome-colors-common gnome-brave gnome-dust gnome-human gnome-illustrious gnome-noble gnome-wine gnome-wise
do
[[ -d usr/share/icons/$theme ]] && gtk-update-icon-cache -q -t -f usr/share/icons/$theme
done
}
post_upgrade() {
post_install
}
post_remove() {
post_install
}
# Maintainer: BlackICE <manfredi at gmail.com>
# Contributor: jsteel <jsteel at aur.archlinux.org>
# Contributor: Arkham <arkham at archlinux dot us>
# Contributor: Artyom Smirnov <smirnoffjr@gmail.com>
# Maintainer: Marius <marius at matamare dot ro>
pkgname=gnome-colors-icon-theme
pkgver=5.5.1
pkgrel=3
pkgdesc="GNOME-Colors icon theme"
arch=('any')
url="http://gnome-colors.googlecode.com"
license=('GPL2')
depends=('gnome-icon-theme')
install=${pkgname}.install
source=(http://gnome-colors.googlecode.com/files/gnome-colors-$pkgver.tar.gz)
md5sums=('8ec81b556bac351817bd56a1701dbbfb')
package() {
make DESTDIR="$pkgdir"/ install
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment