summarylogtreecommitdiffstats
path: root/obyte-gui-wallet-bin.install
blob: e037f5668fbd5bddfb4e28ee4e859e4e66151a82 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
post_install() {
	if [ ! -f /usr/bin/obyte ]; then
		ln -s /usr/share/obyte/Obyte /usr/bin/obyte
	fi
}

post_upgrade() {
	if [ ! -f /usr/bin/obyte ]; then
		rm -f /usr/bin/byteball
		ln -s /usr/share/obyte/Obyte /usr/bin/obyte
	fi
}

post_remove() {
	rm -f /usr/bin/obyte
}