Fixing build errors

This commit is contained in:
MichaelOultram 2015-08-03 21:48:21 +01:00
parent 8ae7816303
commit 62ec49eee7

View file

@ -1,18 +1,19 @@
language: go language: go
install: install:
- export PATH=$PATH:~/bin/
- wget http://johnvansickle.com/ffmpeg/releases/ffmpeg-release-64bit-static.tar.xz - wget http://johnvansickle.com/ffmpeg/releases/ffmpeg-release-64bit-static.tar.xz
- tar -xvf ffmpeg-release-64bit-static.tar.xz --strip 1 --no-anchored ffmpeg ffprobe - tar -xvf ffmpeg-release-64bit-static.tar.xz --strip 1 --no-anchored ffmpeg ffprobe
- sudo chmod a+rx ffmpeg - chmod a+rx ffmpeg
- sudo chmod a+rx ffprobe - chmod a+rx ffprobe
- sudo mv ffmpeg /usr/local/bin/ffmpeg - mv ffmpeg ~/bin/ffmpeg
- sudo mv ffprobe /usr/local/bin/ffprobe - mv ffprobe ~/bin/ffprobe
- wget http://downloads.xiph.org/releases/opus/opus-1.0.3.tar.gz - wget http://downloads.xiph.org/releases/opus/opus-1.0.3.tar.gz
- tar xzvf opus-1.0.3.tar.gz - tar xzvf opus-1.0.3.tar.gz
- cd opus-1.0.3 - cd opus-1.0.3
- ./configure - ./configure
- make - make
- sudo make install - make install
- cd .. - cd ..
- sudo curl https://yt-dl.org/downloads/2015.07.28/youtube-dl -o /usr/local/bin/youtube-dl - curl https://yt-dl.org/downloads/2015.07.28/youtube-dl -o ~/bin/youtube-dl
- sudo chmod a+rx /usr/local/bin/youtube-dl - chmod a+rx ~/bin/youtube-dl