mirror of
https://github.com/moparisthebest/hexchat
synced 2024-11-05 00:45:03 -05:00
22 lines
389 B
Batchfile
22 lines
389 B
Batchfile
|
:: 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%-x86.7z
|
||
|
7z a ..\%PACKAGE_NAME%-x86.7z *
|
||
|
cd %ATK_SRC%
|
||
|
rmdir /q /s %ATK_DEST%
|
||
|
|
||
|
echo.Finished!
|
||
|
pause
|