This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@echo off | |
setlocal | |
echo Compare local file with the file in another git branch | |
echo. | |
set /p branch=Branch to compare to? : | |
set /p file=File? (relative to repo root, use \ for paths) : | |
set file=.\%file: =% | |
rem %file: =% removes any spaces (aimed at trailing spaces) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /bin/sh | |
apt-get install gcc-mingw-w64-x86-64 g++-mingw-w64-x86-64 mingw-w64-tools | |
apt-get install lua5.2 libtool automake autoconf autopoint make gettext pkg-config | |
apt-get install qt4-dev-tools qt5-default git subversion cmake cvs | |
apt-get install wine64-development-tools libwine-dev zip p7zip nsis bzip2 | |
apt-get install yasm ragel ant default-jdk protobuf-compiler dos2unix | |
git clone http://git.videolan.org/git/vlc.git vlc |