source: trunk/Install/MakeWPI.CMD@ 2

Last change on this file since 2 was 2, checked in by jkacer, 18 years ago

Added all DocBook Framework stuff:

  • DocBook DTD
  • Transformation software FOP 0.20.5 and Saxon 6
  • XSL styles
  • Rexx scripts

Also added some WarpIN-related stuff for creation of WarpIN installation packages.
This state corresponds to version 1.0.0 from November 2005, just slightly modified to carry versioning information (Rexx scripts).

  • Property svn:keywords set to Author Revision Date HeadURL Id
File size: 1.4 KB
Line 
1/*
2 *************************************************************************************
3 *
4 * DocBook Framework for OS/2 and eComStation
5 * Create the WarpIN installation archive
6 *
7 * More info on the web:
8 * http://www.kacer.biz/os2/docbook-framework/
9 *
10 * Author:
11 * Jarda Kacer <mailto:jarda@kacer.biz>
12 *
13 *************************************************************************************
14 *
15 * This script creates the framework's WarpIN installation archive.
16 * Attention: No directory to be included in the archive can have the ARCHIVE flag set!
17 *
18 *************************************************************************************
19 *
20 * $Author: jkacer $
21 * $Revision: 2 $
22 * $Date: 2007-09-05 20:07:46 +0000 (Wed, 05 Sep 2007) $
23 * $HeadURL: trunk/Install/MakeWPI.CMD $
24 *
25 *************************************************************************************
26 */
27
28FrameworkVersionMajor = "1"
29FrameworkVersionMinor = "0"
30FrameworkVersionPatch = "0"
31
32WarpINDirectory = "C:\eCS\Install\WarpIN"
33PathToWIC = WarpINDirectory || "\wic.exe"
34Description = "DBF4OS2.WIS"
35ArchiveName = "DocBookFrameworkForOS2"
36
37TargetDirectory = "E:\Temp"
38DistributionDirectory = "..\Distribution"
39
40PathToArchive = TargetDirectory || "\" || ArchiveName || "-" || FrameworkVersionMajor || "-" || FrameworkVersionMinor || "-" || FrameworkVersionPatch || ".WPI"
41Command = PathToWIC || " " || PathToArchive || " -a 1 -c" || DistributionDirectory || " -r * -s " || Description
42
43Command
44
45EXIT
Note: See TracBrowser for help on using the repository browser.