aboutsummaryrefslogtreecommitdiffstats
path: root/cryptsetup/Makefile
diff options
context:
space:
mode:
authorMattias Andrée <m@maandree.se>2024-11-28 22:54:29 +0100
committerMattias Andrée <m@maandree.se>2024-11-28 22:54:29 +0100
commitd9513087a1a0702325bef126ebfcaf6755602f76 (patch)
tree5122cf30674a2adce4aa0f9e29e05a0a45319291 /cryptsetup/Makefile
parentm (diff)
downloaddotfiles-master.tar.gz
dotfiles-master.tar.bz2
dotfiles-master.tar.xz
Add mount-devices script under cryptsetupHEADmaster
Signed-off-by: Mattias Andrée <m@maandree.se>
Diffstat (limited to 'cryptsetup/Makefile')
-rw-r--r--cryptsetup/Makefile15
1 files changed, 15 insertions, 0 deletions
diff --git a/cryptsetup/Makefile b/cryptsetup/Makefile
new file mode 100644
index 0000000..0666bc6
--- /dev/null
+++ b/cryptsetup/Makefile
@@ -0,0 +1,15 @@
+.POSIX:
+
+install:
+ ../check-installed-shebang mount-devices
+ ../check-in-path test
+ ../check-in-path mountpoint
+ ../check-in-path cryptsetup
+ ../check-in-path mount
+ mkdir -p -- ~/.local/bin
+ test ! -e ~/.local/bin/mount-devices || test -L ~/.local/bin/mount-devices
+ ln -sf -- ~/.dotfiles/cryptsetup/mount-devices ~/.local/bin/mount-devices
+
+uninstall:
+ +! ../check-installed cryptsetup
+ -unlink -- ~/.local/bin/mount-devices