Add cairo solution, release scripts and patches

This commit is contained in:
Berke Viktor
2012-10-02 10:26:01 +02:00
parent 2d2afd9a59
commit 94ad6dc012
9 changed files with 1331 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
:: run this from a command prompt
@echo off
SET PACKAGE_NAME=cairo-1.10.2
set CAIRO_SRC=%cd%
set CAIRO_DEST=%cd%-rel
echo.Press return when ready to install!
pause
copy COPYING %CAIRO_DEST%\LICENSE.CAIRO
cd %CAIRO_DEST%
set PATH=%PATH%;%ProgramFiles%\7-zip
del ..\%PACKAGE_NAME%-x86.7z
7z a ..\%PACKAGE_NAME%-x86.7z *
cd %CAIRO_SRC%
rmdir /q /s %CAIRO_DEST%
echo.Finished!
pause