소스 검색

Merge a5758f33f9 into 9a17034b68

pull/36/merge
Tobias Perschon 5 년 전
committed by GitHub
부모
커밋
5f0a7e3412
No known key found for this signature in database GPG 키 ID: 4AEE18F83AFDEB23
1개의 변경된 파일23개의 추가작업 그리고 12개의 파일을 삭제
  1. +23
    -12
      install.sh

+ 23
- 12
install.sh 파일 보기

@@ -9,20 +9,31 @@ if [ "$(id -u)" != "0" ]; then
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 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 +46,4 @@ echo "==========================================="
cp video_looper.conf /etc/supervisor/conf.d/
service supervisor restart

echo "Finished!"
echo "Finished!"

불러오는 중...
취소
저장