diff options
Diffstat (limited to 'gimp-git/gimp-git.install')
-rw-r--r-- | gimp-git/gimp-git.install | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/gimp-git/gimp-git.install b/gimp-git/gimp-git.install new file mode 100644 index 0000000..24e2c39 --- /dev/null +++ b/gimp-git/gimp-git.install @@ -0,0 +1,23 @@ +post_install() { + cat << EOM + +--> OPTIONAL PACKAGES: +--> Please install optional packages as necessary. They will be found and +--> used automatically: +--> gimp has built-in cups print support now. For more sophisticated printing, install gutenprint. +--> For help browser support, install libgtkhtml. + +EOM + + echo "update desktop mime database..." + update-desktop-database -q +} + +post_upgrade() { + post_install $1 +} + +post_remove() { + echo "update desktop mime database..." + update-desktop-database -q +} |