blob: 4d6aee55783b8f6bdcc1ea77914d5ae2fb4f3a07 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
post_install() {
echo ">>> If you want more functionality install the following packages:"
echo ">>> sdl - libjpeg - openexr - pango - librsvg - graphviz"
echo ">>> And build the package again."
}
post_upgrade() {
post_install $1
}
op=$1
shift
$op $*
|