Ok, this should fix compilation. Instead of using the 2-letter language code for...
[HandBrake.git] / DownloadCygWinContribBinaries.sh
blob7865045d8c14799cd86c04f8a86c7173f728581e
1 #! /bin/sh
3 HOST=http://download.m0k.org
4 FILE=contribbin-cygwin-0007.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-0007.tar.gz && wget $URL && rm -Rf lib include && tar xzf contribbin-cygwin-0007.tar.gz && ranlib lib/*.a ) || exit 1
11 exit 0