~ubuntu-branches/ubuntu/wily/codelite/wily

« back to all changes in this revision

Viewing changes to InnoSetup/make_packages.bat

  • Committer: Bazaar Package Importer
  • Author(s): Alessio Treglia
  • Date: 2010-07-29 19:42:47 UTC
  • mfrom: (0.2.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20100729194247-hqgxamd2yl8f1l7x
* New upstream release.
* Bump Standards.
* Refresh patches.
* Add license information about files under ./Debugger/

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
@ECHO OFF
2
2
 
3
3
:: Check command arguments
4
 
IF "%1"=="" GOTO USAGE
 
4
IF "%1"=="/?" GOTO USAGE
 
5
IF "%1"=="all" GOTO ALL
 
6
 
 
7
:: Preare a development installer
 
8
SET CODELITE_INSTALLER=codelite-devel
 
9
"%ProgramFiles%\Inno Setup 5\iscc" lite_editor.iss /F%CODELITE_INSTALLER%
 
10
 
 
11
GOTO END
 
12
 
 
13
:ALL
 
14
 
 
15
IF "%2"=="" GOTO USAGE
5
16
 
6
17
:: Installer name for IDE only
7
 
SET CODELITE_INSTALLER=codelite-2.5.3.%1
 
18
SET CODELITE_INSTALLER=codelite-2.6.0.%2
8
19
 
9
20
:: Installer name for IDE + MinGW
10
 
SET CODELITE_INSTALLER_MINGW=codelite-2.5.3.%1-mingw4.4.1
 
21
SET CODELITE_INSTALLER_MINGW=codelite-2.6.0.%2-mingw4.4.1
11
22
 
12
23
:: Installer name for IDE + MinGW + WX2.8.10
13
 
SET CODELITE_INSTALLER_MINGW_WX=codelite-2.5.3.%1-mingw4.4.1-wx2.8.10
 
24
SET CODELITE_INSTALLER_MINGW_WX=codelite-2.6.0.%2-mingw4.4.1-wx2.8.10
14
25
 
15
26
"%ProgramFiles%\Inno Setup 5\iscc" lite_editor.iss /F%CODELITE_INSTALLER%
16
27
 
21
32
GOTO END
22
33
 
23
34
:USAGE
24
 
echo Usage: make_packages.bat [revision_number]
 
35
 
 
36
echo Usage:
 
37
echo       make_packages.bat all [revision_number] - prepare a package for release
 
38
echo       make_packages.bat                       - prepare a developement installer (used to test the installer)
25
39
 
26
40
:END