blob: 39403cf8366861a3d298ee6f3ce174e1391b3a5c (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
post_install() {
echo " ==> This package provides the GUI only. Install groops-git"
echo " ==> for the actual processing software. On first launch you"
echo " ==> will be asked for a schema file and documentation directory."
echo " ==> The xml schema file is located at /usr/share/groopsgui-git."
echo " ==> The documentation directory is at /usr/share/doc/groopsgui-git."
}
post_upgrade() {
post_install $1 $2
}
|