diff options
author | Perberos <[email protected]> | 2012-07-31 20:31:40 -0300 |
---|---|---|
committer | Perberos <[email protected]> | 2012-07-31 20:31:40 -0300 |
commit | 88ab1796d36b39f08d9cd6156fdd5b5d6df19dd1 (patch) | |
tree | 1bd18cbb90dbee6cf103c5599f76b963ffdb7e30 /distro/archlinux/mate-calc.install | |
parent | 3ea5c7d9e0d45e1d3908624a95ec5cf2a797a97f (diff) | |
download | mate-calc-88ab1796d36b39f08d9cd6156fdd5b5d6df19dd1.tar.bz2 mate-calc-88ab1796d36b39f08d9cd6156fdd5b5d6df19dd1.tar.xz |
adding gschemas install on PKGBUILD script
Diffstat (limited to 'distro/archlinux/mate-calc.install')
-rw-r--r-- | distro/archlinux/mate-calc.install | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/distro/archlinux/mate-calc.install b/distro/archlinux/mate-calc.install new file mode 100644 index 0000000..20b564d --- /dev/null +++ b/distro/archlinux/mate-calc.install @@ -0,0 +1,22 @@ +pkgname=mate-calc + +post_install() { + usr/bin/glib-compile-schemas usr/share/glib-2.0/schemas + gtk-update-icon-cache -q -t -f usr/share/icons/hicolor +} + +pre_upgrade() { + pre_remove $1 +} + +post_upgrade() { + post_install $1 +} + +pre_remove() { + usr/bin/glib-compile-schemas usr/share/glib-2.0/schemas +} + +post_remove() { + gtk-update-icon-cache -q -t -f usr/share/icons/hicolor +} |