Skip to content

Commit

Permalink
Added download_ps3mediaserver
Browse files Browse the repository at this point in the history
  • Loading branch information
ikarsokolov committed Feb 7, 2012
1 parent a4c221c commit 36e2530
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 1 deletion.
File renamed without changes.
2 changes: 1 addition & 1 deletion contrib/binaries-deps-versions
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ VERSION_LIBZEN=0.4.23
VERSION_LZO=2.04
VERSION_MPLAYER=34587
VERSION_NCURSES=5.9
VERSION_PS3MEDIASERVER=2011-12-11
VERSION_PS3MEDIASERVER=release-1.50.0
VERSION_TSMUXER=1.10.6
VERSION_X264=r2146
VERSION_XVID=1.3.1
Expand Down
29 changes: 29 additions & 0 deletions contrib/download-pms-binaries-source.sh
Original file line number Diff line number Diff line change
Expand Up @@ -718,6 +718,34 @@ download_yasm() {
}


##########################################
# PS3MEDIASERVER
# https://github.com/ps3mediaserver/ps3mediaserver
#
download_ps3mediaserver() {
start_download ps3mediaserver
cd $SRC

if [ -d ps3mediaserver ]; then
rm -rf ps3mediaserver
fi
$GIT clone git://github.com/ps3mediaserver/ps3mediaserver.git ps3mediaserver
exit_on_error
cd ps3mediaserver

if [ "$FIXED_REVISIONS" == "yes" ]; then
$GIT checkout $VERSION_PS3MEDIASERVER
exit_on_error
fi

# let's clean the source
rm -rf ./.git
rm -rf ./src/main/external-resources/third-party/nsis/ ./src/main/external-resources/nsis/
find . -depth -type f -name "*.dll" -exec rm -f '{}' \;
find . -type f \( -name "*-sources.jar" -o -name "*-javadoc.jar" -o -name "*-sources.zip" -o -name "*-javadoc.zip" -o -name "*-docs.zip" \) -exec rm -vf '{}' \;
}


##########################################
# Finally, execute the script...
#
Expand Down Expand Up @@ -762,3 +790,4 @@ fi
download_enca
download_ffmpeg
download_mplayer
download_ps3mediaserver

0 comments on commit 36e2530

Please sign in to comment.