everything related to duct tape audio suite (dtas)
 help / color / mirror / code / Atom feed
From: Eric Wong <e@80x24.org>
To: dtas-all@nongnu.org
Subject: [PATCH] build: add "symlink-install" target
Date: Thu, 29 Apr 2021 08:26:11 +0000	[thread overview]
Message-ID: <20210429082611.16497-1-e@80x24.org> (raw)

This is useful for users relying on system Ruby and lack
permissions to install gems.
---
 GNUmakefile | 14 +++++++++++++-
 dtas.sh     |  7 +++++++
 2 files changed, 20 insertions(+), 1 deletion(-)
 create mode 100755 dtas.sh

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


                 reply	other threads:[~2021-04-29  8:26 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://80x24.org/dtas/README

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20210429082611.16497-1-e@80x24.org \
    --to=e@80x24.org \
    --cc=dtas-all@nongnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://80x24.org/dtas.git/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).