* 'master' of https://github.com/j6t/git-gui: git-gui: wire up support for the Meson build system git-gui: stop including GIT-VERSION-FILE file git-gui: extract script to generate macOS app git-gui: extract script to generate macOS wrapper git-gui: extract script to generate "tclIndex" git-gui: extract script to generate "git-gui" git-gui: drop no-op GITGUI_SCRIPT replacement git-gui: make output of GIT-VERSION-GEN source'able git-gui: prepare GIT-VERSION-GEN for out-of-tree builds git-gui: replace GIT-GUI-VARS with GIT-GUI-BUILD-OPTIONS
36 lines
597 B
Bash
Executable File
36 lines
597 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
if test "$#" -ne 3
|
|
then
|
|
echo >&2 "usage: $0 <OUTPUT> <BUILD_OPTIONS> <VERSION_FILE>"
|
|
exit 1
|
|
fi
|
|
|
|
OUTPUT="$1"
|
|
BUILD_OPTIONS="$2"
|
|
VERSION_FILE="$3"
|
|
|
|
. "$BUILD_OPTIONS"
|
|
|
|
rm -f "$OUTPUT" "$OUTPUT+"
|
|
|
|
(
|
|
echo "#!$SHELL_PATH"
|
|
cat "$BUILD_OPTIONS" "$VERSION_FILE"
|
|
cat <<-'EOF'
|
|
if test "z$*" = zversion ||
|
|
test "z$*" = z--version
|
|
then
|
|
echo "git-gui version $GITGUI_VERSION"
|
|
else
|
|
libdir="${GIT_GUI_LIB_DIR:-$GITGUI_LIBDIR}"
|
|
exec "$libdir/Git Gui.app/Contents/MacOS/$(basename "$TKEXECUTABLE")" "$0" "$@"
|
|
fi
|
|
EOF
|
|
) >"$OUTPUT+"
|
|
|
|
chmod +x "$OUTPUT+"
|
|
mv "$OUTPUT+" "$OUTPUT"
|