summarylogtreecommitdiffstats
path: root/spotify-connect-web.install
blob: 094d0b4a720c5798938c0e99bc3ce802ab277061 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26

post_upgrade() {
	# compile cffi
	cd /usr/lib/spotify-connect-web/
        python2 -c "from connect_ffi import ffi, lib"

	systemctl daemon-reload
}

# arg 1:  the new package version
post_install() {
	
	# do something here
	echo "Choose a user to run spotify-connect-web as."
	echo "Obtain a binary appkey from https://developer.spotify.com/my-account/keys and put it into users home under ~/.config/spotify-connect-web/"
	echo "Start via: systemctl start spotify-connect-web@username"
	echo "Login to spotify on localhost:4000"
	echo "Login has to be done only once, a binary credential blob is used afterwards (~/.config/spotify-connect-web/credentials.json)"

	post_upgrade
}

pre_remove(){
	systemctl stop spotify-connect-web@*.service
	rm -rf /usr/lib/spotify-connect-web/__pycache__
}