aboutsummaryrefslogtreecommitdiffstats
path: root/audacity/Makefile
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--audacity/Makefile18
1 files changed, 18 insertions, 0 deletions
diff --git a/audacity/Makefile b/audacity/Makefile
new file mode 100644
index 0000000..ea262e6
--- /dev/null
+++ b/audacity/Makefile
@@ -0,0 +1,18 @@
+.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 ! -d ~/.config/profile.d/audacity
+ ln -sf -- ~/.dotfiles/audacity/user-profile ~/.config/profile.d/audacity
+ cp -- audacity.cfg ~/.var/lib/audacity/
+
+uninstall:
+ -unlink -- ~/.config/profile.d/audacity
+ -rmdir -- ~/.config/profile.d
+ -rm -rf -- ~/.var/lib/audacity
+ -rm -rf -- /var/tmp/"audacity-$$(whoami)"
+
+.PHONY: install uninstall