gnome-shell.install 334 B

12345678910111213141516171819202122
  1. pkgname=gnome-shell
  2. post_install() {
  3. glib-compile-schemas usr/share/glib-2.0/schemas
  4. usr/sbin/gconfpkg --install ${pkgname}
  5. }
  6. pre_upgrade() {
  7. pre_remove $1
  8. }
  9. post_upgrade() {
  10. post_install $1
  11. }
  12. pre_remove() {
  13. usr/sbin/gconfpkg --uninstall ${pkgname}
  14. }
  15. post_remove() {
  16. glib-compile-schemas usr/share/glib-2.0/schemas
  17. }