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 |
|
---|
28 | FrameworkVersionMajor = "1"
|
---|
29 | FrameworkVersionMinor = "0"
|
---|
30 | FrameworkVersionPatch = "0"
|
---|
31 |
|
---|
32 | WarpINDirectory = "C:\eCS\Install\WarpIN"
|
---|
33 | PathToWIC = WarpINDirectory || "\wic.exe"
|
---|
34 | Description = "DBF4OS2.WIS"
|
---|
35 | ArchiveName = "DocBookFrameworkForOS2"
|
---|
36 |
|
---|
37 | TargetDirectory = "E:\Temp"
|
---|
38 | DistributionDirectory = "..\Distribution"
|
---|
39 |
|
---|
40 | PathToArchive = TargetDirectory || "\" || ArchiveName || "-" || FrameworkVersionMajor || "-" || FrameworkVersionMinor || "-" || FrameworkVersionPatch || ".WPI"
|
---|
41 | Command = PathToWIC || " " || PathToArchive || " -a 1 -c" || DistributionDirectory || " -r * -s " || Description
|
---|
42 |
|
---|
43 | Command
|
---|
44 |
|
---|
45 | EXIT
|
---|
Note:
See
TracBrowser
for help on using the repository browser.