aboutsummaryrefslogtreecommitdiff
path: root/snag/scripts/run_pkg_install.sh
diff options
context:
space:
mode:
authorJack Jamison <jackqjamison@gmail.com>2026-07-23 12:23:40 -0400
committerJack Jamison <jackqjamison@gmail.com>2026-07-23 12:23:40 -0400
commitfa4344e5dedff14af2bce55d29a272495dd6bbb5 (patch)
treeb90719263489365885a704bb4eab155c40c11d71 /snag/scripts/run_pkg_install.sh
parente207f7382cf23dcf88700dead255a41c817a0863 (diff)
cache downloads and cleaning
Diffstat (limited to 'snag/scripts/run_pkg_install.sh')
-rwxr-xr-xsnag/scripts/run_pkg_install.sh16
1 files changed, 0 insertions, 16 deletions
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 <description script>" >&2
- exit 1
-fi
-
-# load the description script
-. $1
-
-# run all install steps for package
-configure
-build
-install