diff options
author | Berke Viktor <bviktor@hexchat.org> | 2012-10-02 10:26:01 +0200 |
---|---|---|
committer | Berke Viktor <bviktor@hexchat.org> | 2012-10-02 10:26:01 +0200 |
commit | 94ad6dc01283cf61fee2bc884b9f1856433af579 (patch) | |
tree | 6cb7f8fa392b971021d0ead14507597fde076463 /win32/deps/cairo/release-x64.bat | |
parent | 2d2afd9a59f82f9dbb7dde756d7fd5fa8f7b6203 (diff) |
Add cairo solution, release scripts and patches
Diffstat (limited to 'win32/deps/cairo/release-x64.bat')
-rw-r--r-- | win32/deps/cairo/release-x64.bat | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/win32/deps/cairo/release-x64.bat b/win32/deps/cairo/release-x64.bat new file mode 100644 index 00000000..8155ca85 --- /dev/null +++ b/win32/deps/cairo/release-x64.bat @@ -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%-x64.7z +7z a ..\%PACKAGE_NAME%-x64.7z * +cd %CAIRO_SRC% +rmdir /q /s %CAIRO_DEST% + +echo.Finished! +pause |