#!/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 echo "Installing dependencies..." echo "==========================" apt-get update apt-get -y install build-essential python-dev python-pip python-pygame supervisor git omxplayer samba samba-common-bin echo "Installing hello_video..." echo "=========================" cd pi_hello_video make -C libs/ilclient clean make -C hello_video clean make -C libs/ilclient make -C hello_video cd hello_video make install cd ../.. rm -rf pi_hello_video 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!"