From d9121b1c93e054163661136e3e18a9f3636539e7 Mon Sep 17 00:00:00 2001 From: Ondrej Certik Date: Sat, 26 Mar 2011 11:47:25 -0700 Subject: [PATCH] Add spkg-install file --- spkg-install | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 spkg-install diff --git a/spkg-install b/spkg-install new file mode 100644 index 0000000..89b302c --- /dev/null +++ b/spkg-install @@ -0,0 +1,13 @@ +#! /bin/sh + +if [ "$SPKG_LOCAL" = "" ]; then + echo "SPKG_LOCAL undefined ... exiting"; + echo "Maybe run 'qsnake --shell'?" + exit 1 +fi + + +set -e + +./configure --prefix="$SPKG_LOCAL" +make install