about summary refs log tree commit homepage
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2021-04-29 08:26:11 +0000
committerEric Wong <e@80x24.org>2021-05-06 23:07:43 +0000
commit96c43ff8f26cf89934198d2387cddef1f119a271 (patch)
treed94f8064a08d62bb8ace91e3de08ac5078da7d73
parenta282c47a217e6028008408dd74b249fddaad2153 (diff)
downloaddtas-96c43ff8f26cf89934198d2387cddef1f119a271.tar.gz
This is useful for users relying on system Ruby and lack
permissions to install gems.
-rw-r--r--GNUmakefile14
-rwxr-xr-xdtas.sh7
2 files changed, 20 insertions, 1 deletions
diff --git a/GNUmakefile b/GNUmakefile
index e5914b2..084a2d8 100644
--- a/GNUmakefile
+++ b/GNUmakefile
@@ -1,4 +1,4 @@
-# Copyright (C) 2013-2020 all contributors <dtas-all@nongnu.org>
+# Copyright (C) 2013-2021 all contributors <dtas-all@nongnu.org>
 # License: GPL-3.0+ <https://www.gnu.org/licenses/gpl-3.0.txt>
 all::
 pkg = dtas
@@ -74,5 +74,17 @@ $(pkgtgz): .tgz-manifest
 
 package: $(pkgtgz) $(pkggem)
 
+# Install symlinks to ~/bin (which is hopefuly in PATH) which point to
+# this source tree.
+# prefix + bindir matches git.git Makefile:
+prefix = $(HOME)
+bindir = $(prefix)/bin
+symlink-install :
+        mkdir -p $(bindir)
+        dtas=$(CURDIR)/dtas.sh && cd $(bindir) && \
+        for x in $(CURDIR)/bin/*; do \
+                ln -sf "$$dtas" $$(basename "$$x"); \
+        done
+
 .PHONY: all .FORCE-GIT-VERSION-FILE test $(test_units) NEWS
 .PHONY: check-warnings fix-perms
diff --git a/dtas.sh b/dtas.sh
new file mode 100755
index 0000000..d3ea5e1
--- /dev/null
+++ b/dtas.sh
@@ -0,0 +1,7 @@
+#!/bin/sh -e
+# symlink this file to a directory in PATH to run dtas (or anything in bin/*)
+# without needing perms to install globally.  Used by "make symlink-install"
+p=$(realpath "$0" || readlink "$0") # neither is POSIX, but common
+p=$(dirname "$p") c=$(basename "$0") # both are POSIX
+exec ${RUBY-ruby} -I"$p"/lib "$p"/bin/"${c%.sh}" "$@"
+: this script is too short to copyright