1
0
mirror of https://github.com/moparisthebest/hexchat synced 2024-08-13 16:53:48 -04:00
hexchat/win32/deps/gtk/release-x64.bat

22 lines
390 B
Batchfile
Raw Normal View History

2012-10-02 07:53:54 -04:00
:: run this from a command prompt
@echo off
SET PACKAGE_NAME=gtk-2.24.13
set GTK_SRC=%cd%
set GTK_DEST=%cd%-rel
echo.Press return when ready to install!
pause
copy COPYING %GTK_DEST%\LICENSE.GTK
cd %GTK_DEST%
set PATH=%PATH%;%ProgramFiles%\7-zip
del ..\%PACKAGE_NAME%-x64.7z
7z a ..\%PACKAGE_NAME%-x64.7z *
cd %GTK_SRC%
rmdir /q /s %GTK_DEST%
echo.Finished!
pause