install.bat (708B)
1 @echo off 2 3 cd %APPVEYOR_BUILD_FOLDER% 4 5 echo Compiler: %COMPILER% 6 echo Architecture: %MSYS2_ARCH% 7 echo Platform: %PLATFORM% 8 echo MSYS2 directory: %MSYS2_DIR% 9 echo MSYS2 system: %MSYSTEM% 10 echo Bits: %BIT% 11 12 IF %COMPILER%==msys2 ( 13 @echo on 14 SET "PATH=C:\%MSYS2_DIR%\%MSYSTEM%\bin;C:\%MSYS2_DIR%\usr\bin;C:\%MSYS2_DIR%\home\appveyor\.cask\bin;%PATH%" 15 16 REM dependencies 17 bash -lc "pacman -S --needed --noconfirm git base-devel automake autoconf mingw-w64-x86_64-zlib mingw-w64-x86_64-libpng mingw-w64-x86_64-poppler mingw-w64-x86_64-imagemagick openssl mingw-w64-x86_64-openssl mingw-w64-x86_64-python2 mingw-w64-x86_64-emacs" 18 19 REM Set up Cask 20 bash -lc "git clone https://github.com/cask/cask ~/.cask" 21 )