blob: 1528f50ad105e9b230283bba3236cc09d331ad81 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
post_install() {
echo ">> If you wish to use Snes9x with OpenGL try osnes9x"
/bin/true
}
post_upgrade() {
echo ">> If you wish to use Snes9x with OpenGL try osnes9x"
/bin/true
}
op=$1
shift
$op $*
|