diff options
author | Berke Viktor <bviktor@hexchat.org> | 2012-09-30 21:41:34 +0200 |
---|---|---|
committer | Berke Viktor <bviktor@hexchat.org> | 2012-09-30 21:41:34 +0200 |
commit | d6c13e0f89be3aacadc9d52efe1a82ccaee361c3 (patch) | |
tree | 5fccb162b191dfeacba6b0d4993849862b6b0d0c /win32/deps/atk/release-x64.bat | |
parent | f8c7152785b0d75612436132133c6f96882451ee (diff) |
Add ATK solution and release scripts
Diffstat (limited to 'win32/deps/atk/release-x64.bat')
-rw-r--r-- | win32/deps/atk/release-x64.bat | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/win32/deps/atk/release-x64.bat b/win32/deps/atk/release-x64.bat new file mode 100644 index 00000000..799963c2 --- /dev/null +++ b/win32/deps/atk/release-x64.bat @@ -0,0 +1,21 @@ +:: run this from a command prompt +@echo off + +SET PACKAGE_NAME=atk-2.5.91 + +set ATK_SRC=%cd% +set ATK_DEST=%cd%-rel +echo.Press return when ready to install! +pause + +copy COPYING %ATK_DEST%\LICENSE.ATK + +cd %ATK_DEST% +set PATH=%PATH%;%ProgramFiles%\7-zip +del ..\%PACKAGE_NAME%-x64.7z +7z a ..\%PACKAGE_NAME%-x64.7z * +cd %ATK_SRC% +rmdir /q /s %ATK_DEST% + +echo.Finished! +pause |