From 07395109f28ff573c1a7853dc47094d27cd258e1 Mon Sep 17 00:00:00 2001 From: Tobias Perschon Date: Sun, 10 Sep 2017 09:53:29 +0200 Subject: [PATCH] added argument "no_hello_video" to prevent the build and install of hello_video --- install.sh | 31 +++++++++++++++++++------------ 1 file changed, 19 insertions(+), 12 deletions(-) diff --git a/install.sh b/install.sh index 17aa9eb..3173cc0 100755 --- a/install.sh +++ b/install.sh @@ -9,20 +9,27 @@ if [ "$(id -u)" != "0" ]; then exit 1 fi + + echo "Installing dependencies..." echo "==========================" apt-get update -apt-get -y install build-essential python-dev python-pip python-pygame supervisor git omxplayer - -echo "Installing hello_video..." -echo "=========================" -git clone https://github.com/adafruit/pi_hello_video.git -cd pi_hello_video -./rebuild.sh -cd hello_video -make install -cd ../.. -rm -rf pi_hello_video +apt-get -y install python-dev python-pip python-pygame supervisor git omxplayer + +#check if hello_video should be installed +if [ "$*" != "no_hello_video" ] +then + echo "Installing hello_video..." + echo "=========================" + apt-get -y install build-essential + git clone https://github.com/adafruit/pi_hello_video.git + cd pi_hello_video + ./rebuild.sh + cd hello_video + make install + cd ../.. + rm -rf pi_hello_video +fi echo "Installing video_looper program..." echo "==================================" @@ -35,4 +42,4 @@ echo "===========================================" cp video_looper.conf /etc/supervisor/conf.d/ service supervisor restart -echo "Finished!" +echo "Finished!" \ No newline at end of file