Add Pango solution and release scripts

This commit is contained in:
Berke Viktor
2012-10-02 12:59:27 +02:00
parent 93039b3305
commit 0a68629dae
13 changed files with 1857 additions and 0 deletions

View File

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