From 3a6788c0d0b50e0cae902cfdc737d1b2624202ba Mon Sep 17 00:00:00 2001 From: Christian Hesse Date: Wed, 11 Jan 2017 10:50:02 +0100 Subject: single: allow to build self-extracting executable This allows to create a self extracting executable. The standalone binary and lua files are extracted to /tmp/.vis-XXXXXX, vis is started with the given command line arguments, finally temporary files are removed. Signed-off-by: Christian Hesse --- vis-single.sh | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100755 vis-single.sh (limited to 'vis-single.sh') diff --git a/vis-single.sh b/vis-single.sh new file mode 100755 index 0000000..b6ff69e --- /dev/null +++ b/vis-single.sh @@ -0,0 +1,14 @@ +#!/bin/sh + +set -e + +VISTMP="$(mktemp -d -p "${TMPDIR:-/tmp}" .vis-XXXXXX)" +trap 'rm -rf "$VISTMP"' EXIT INT QUIT TERM HUP + +sed '1,/^__TAR_GZ_ARCHIVE_BELOW__$/d' "$0" | gzip -d | tar xC "$VISTMP" + +"$VISTMP/vis" "$@" + +exit $? + +__TAR_GZ_ARCHIVE_BELOW__ -- cgit v1.2.3