blob: de88b3e5dc7f1c56197962462cb260c8ebfc823b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
post_install() {
echo ">> Hello!"
echo ">> you'll have to run the kh-melonmix-owndir as root/sudo to gain ownership of the /opt/Kingdom Hearts Melon Mix/ directory"
echo ">> to run one of the games, please place your roms inside of the /opt/Kingdom Hearts Melon Mix/roms directory"
echo ">> If you also want the HD cutscenes, please place those in the /opt/Kingdom Hearts Melon Mix/assets directory"
echo ">> If you want/need more info (for stuff like controls), go to the upstream GitHub repo"
echo ">> https://github.com/vitor251093/khmelonmix"
ln -s "/opt/Kingdom Hearts Melon Mix/MelonMix" /usr/bin/kh-melonmix
}
## arg 1: the old package version
post_remove() {
su -c "rm -rf /usr/bin/kh-melonmix"
}
|