aboutsummaryrefslogtreecommitdiffstats
path: root/audacity/Makefile
blob: 87359d9b4b175e74542305878840d3d35644232d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
.POSIX:

# Audacity heavily edits audacity.cfg so we make copy it instead of linking it

install:
	mkdir -p -- ~/.var/lib/audacity
	mkdir -p -- ~/.config/profile.d
	test ! -e ~/.config/profile.d/audacity || test -L ~/.config/profile.d/audacity
	ln -sf -- ~/.dotfiles/audacity/user-profile ~/.config/profile.d/audacity
	cp -- audacity.cfg ~/.var/lib/audacity/

uninstall:
	+! ../check-installed audacity
	-unlink -- ~/.config/profile.d/audacity
	-rmdir -- ~/.config/profile.d
	-rm -rf -- ~/.var/lib/audacity
	-rm -rf -- /var/tmp/"audacity-$$(whoami)"