#!/bin/sh # Error out if anything fails. set -e # Make sure script is run as root. if [ "$(id -u)" != "0" ]; then echo "Must be run as root with sudo! Try: sudo ./install.sh" exit 1 fi if [ "$*" != "no_hello_video" ] then echo "Installing without hello_video" echo "==========================" fi echo "Installing dependencies..." echo "==========================" apt-get update 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 "==================================" mkdir -p /mnt/usbdrive0 # This is very important if you put your system in readonly after python setup.py install --force cp video_looper.ini /boot/video_looper.ini echo "Configuring video_looper to run on start..." echo "===========================================" cp video_looper.conf /etc/supervisor/conf.d/ service supervisor restart echo "Finished!"