Adds more changes for 0.9.1 to the NEWS file.
[HandBrake.git] / DownloadCygWinContribBinaries.sh
blob55d4eb069d5f28155025ab45478a2a46f54ef2bc
1 #! /bin/sh
3 HOST=http://download.m0k.org
4 FILE=contribbin-cygwin-0013.tar.gz
5 URL=$HOST/handbrake/contrib/$FILE
7 # Get and install the package
8 echo "Getting contribs ($VERSION)..."
9 ( cd contrib && rm -f contribbin-cygwin-0013.tar.gz && wget $URL && rm -Rf lib include && tar xzf contribbin-cygwin-0013.tar.gz && ranlib lib/*.a ) || exit 1
11 exit 0