gnome-shell.install 292 B

12345678910111213141516171819
  1. pkgname=gnome-shell
  2. post_install() {
  3. glib-compile-schemas /usr/share/glib-2.0/schemas
  4. }
  5. pre_upgrade() {
  6. if [ -f /usr/share/gconf/schemas/$pkgname.schemas ]; then
  7. gconfpkg --uninstall $pkgname
  8. fi
  9. }
  10. post_upgrade() {
  11. post_install
  12. }
  13. post_remove() {
  14. post_install
  15. }