Bumps version number for upcoming release of 0.9.1. Note: still needs to be done...
[HandBrake.git] / DownloadCygWinContribBinaries.sh
bloba1fd944f6d2cf0a5c575be46c685243c4280b221
1 #! /bin/sh
3 HOST=http://download.m0k.org
4 FILE=contribbin-cygwin-0011.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-0011.tar.gz && wget $URL && rm -Rf lib include && tar xzf contribbin-cygwin-0011.tar.gz && ranlib lib/*.a ) || exit 1
11 exit 0