handbrake-jp project\'s main repository.
Rev. | 4d0682a5169effd35e352411170cb937ca1c35cf |
---|---|
크기 | 908 bytes |
Time | 2009-12-28 18:22:36 |
Author | unknown |
Log Message | fix: cannot preview with QT
|
#! /bin/sh
# Incremented every time a new contrib package is available
VERSION=`cat MacOsXContribBinariesVersion.txt`
if [ -f contrib/DarwinContribVersion.txt ]; then
if [ "`cat contrib/DarwinContribVersion.txt`" = $VERSION ]; then
echo "Contribs are up to date."
exit 0
fi
fi
HOST=download.m0k.org
#HOST=download.mediafork.dynalias.com
#HOST=sr55.ashosted.com
FILE=contribbin-darwin-$VERSION.tar.gz
#URL=http://$HOST/contrib/$FILE
URL=http://$HOST/handbrake/contrib/$FILE
# Check for internet connectivity
if ! host $HOST > /dev/null 2>&1; then
echo "Please connect to the Internet (could not resolve $HOST)."
exit 1
fi
# Look for something that can handle an HTTP download
WGET="curl -L -O"
# Get and install the package
echo "Getting contribs ($VERSION)..."
( cd contrib && rm -f $FILE && $WGET $URL && rm -Rf lib include && \
tar xzf $FILE && ranlib lib/*.a ) || exit 1
exit 0