Moved opus back to its original place

This commit is contained in:
MichaelOultram 2015-08-10 01:39:58 +01:00
parent e52ed9a2d1
commit 80a4cd01b2
2 changed files with 7 additions and 11 deletions

View file

@ -10,9 +10,10 @@ cache:
- $HOME/gopath/src/github.com/MichaelOultram/mumbledj/.vendor - $HOME/gopath/src/github.com/MichaelOultram/mumbledj/.vendor
before_install: before_install:
- export PATH=$PATH:~/bin/ - export PATH=$PATH:$HOME/bin/
- export PATH=$PATH:$GOPATH/bin/ - export LD_RUN_PATH=$LD_RUN_PATH:$HOME/opus/lib
- export PKG_CONFIG_PATH=$PKG_CONFIG_PATH:$HOME/opus/lib/pkgconfig - export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$HOME/opus/lib
- export PKG_CONFIG_PATH=$PKG_CONFIG_PATH:$HOME/opus/lib
- bash install-dependencies.sh - bash install-dependencies.sh
install: install:

View file

@ -12,10 +12,10 @@ else
fi fi
# check to see if opus is installed # check to see if opus is installed
if [ ! -d "$HOME/bin/lib" ]; then if [ ! -d "$HOME/opus/lib" ]; then
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 && ./configure --prefix=$HOME/bin && make && make install cd opus-1.0.3 && ./configure --prefix=$HOME/opus && make && make install
else else
echo 'Using cached version of opus.'; echo 'Using cached version of opus.';
fi fi
@ -27,8 +27,3 @@ if [ ! -f "$HOME/bin/youtube-dl" ]; then
else else
echo 'Using cached version of youtube-dl.'; echo 'Using cached version of youtube-dl.';
fi fi
ls -l $HOME/bin
ls -l $HOME/bin/lib
ls -l $HOME/opus
ls -l $HOME/opus/lib