aboutsummaryrefslogtreecommitdiff
path: root/win/package.tcl
blob: 6e521e5756beb8fa5fd591346b52fb73303b2c06 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
set packager {C:\Program Files\Caphyon\Advanced Installer\AdvancedInstaller.exe}

#
# Build a merged pkgIndex.tcl
#
set fout [open pkgIndex.tcl w]
set fin [open [file join .. pkgIndex.tcl]]
puts -nonewline $fout [read $fin];
close $fin
set fin [open [file join .. library pkgIndex.tcl]]
foreach line [split [read $fin] \n] {
    if {![regexp {^\s*$|^#} $line]} {
	puts $fout $line
    }
}
close $fin
close $fout

#
# Build a .bat script for the Perl demos.
#
set fout [open zinc-demos.bat w]
set fin [open [file join .. Perl demos zinc-demos]]
puts $fout {@rem = '--*-Perl-*--
@echo off
if "%OS%" == "Windows_NT" goto WinNT
perl -x -S "%0" %1 %2 %3 %4 %5 %6 %7 %8 %9
goto endofperl
:WinNT
perl -x -S %0 %*
if NOT "%COMSPEC%" == "%SystemRoot%\system32\cmd.exe" goto endofperl
if %errorlevel% == 9009 echo You do not have Perl in your PATH.
if errorlevel 1 goto script_failed_so_exit_with_non_zero_val 2>nul
goto endofperl
@rem ';}
puts $fout [read $fin]
puts $fout {__END__
:endofperl}
close $fin
close $fout

file copy -force [file join .. demos zinc-widget] zinc-widget.tcl

exec $packager /build Tkzinc.aip
exec $packager /build Tkzincperl.aip

#file delete -force pkgIndex.tcl zinc-widget.tcl zinc-demos.bat