#!/bin/sh
set -e

case "$1" in
    install | configure)
      glib-compile-schemas --strict /usr/share/gnome-shell/extensions/AlphabeticalAppGrid@stuarthayhurst/schemas/
    ;;
    *)
      # crickets
    ;;
esac

#DEBHELPER#