From fa4344e5dedff14af2bce55d29a272495dd6bbb5 Mon Sep 17 00:00:00 2001 From: Jack Jamison Date: Thu, 23 Jul 2026 12:23:40 -0400 Subject: cache downloads and cleaning --- snag/scripts/run_pkg_build.sh | 16 ++++++++++++++++ snag/scripts/run_pkg_install.sh | 16 ---------------- 2 files changed, 16 insertions(+), 16 deletions(-) create mode 100755 snag/scripts/run_pkg_build.sh delete mode 100755 snag/scripts/run_pkg_install.sh (limited to 'snag/scripts') diff --git a/snag/scripts/run_pkg_build.sh b/snag/scripts/run_pkg_build.sh new file mode 100755 index 0000000..d48d831 --- /dev/null +++ b/snag/scripts/run_pkg_build.sh @@ -0,0 +1,16 @@ +#!/bin/sh + +# reads a package description script and runs the configure, build, and install +# steps. intended only for use by snag program +if [ -z "$1" ]; then + echo "Usage: $0 " >&2 + exit 1 +fi + +# load the description script +. $1 + +# run all install steps for package +configure +build +install diff --git a/snag/scripts/run_pkg_install.sh b/snag/scripts/run_pkg_install.sh deleted file mode 100755 index d48d831..0000000 --- a/snag/scripts/run_pkg_install.sh +++ /dev/null @@ -1,16 +0,0 @@ -#!/bin/sh - -# reads a package description script and runs the configure, build, and install -# steps. intended only for use by snag program -if [ -z "$1" ]; then - echo "Usage: $0 " >&2 - exit 1 -fi - -# load the description script -. $1 - -# run all install steps for package -configure -build -install -- cgit v1.2.3