File: TODO

package info (click to toggle)
octave2.1-forge 2006.03.17%2Bdfsg1-7
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 16,672 kB
  • ctags: 6,047
  • sloc: cpp: 49,610; ansic: 14,035; perl: 2,789; sh: 2,087; makefile: 1,560; lex: 1,219; tcl: 799; fortran: 422; objc: 202
file content (28 lines) | stat: -rw-r--r-- 798 bytes parent folder | download | duplicates (4)
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
* Compile libmath.dll with various optimizations

* Use chm so users can search the entire help system

* Include epstk/category index in package so that documentation is consistent

* Use DetectDrives.nsi to detect available drives in NSIS:

	!include "DetectDrives.nsi"

	Function MakeDriveLink
	   StrCpy $R2 $R0 1
	   # FileOpen $R1 "$INSTDIR/drive.link" "a"
	   # FileSeek $R1 0 END
	   # FileWrite $R1 "ln -sf /cygdrive/$R2 /$R2"
	   # FileClose $R1
	   Exec "$INSTDIR\bin\sh.exe -c 'ln -sf /cygdrive/$R2 /$R2'"
	FunctionEnd

	Section "-Make drive links"
	   # Delete "$INSTDIR/drive.link"
	   Push "All Local Drives"
	   Push $0
	   GetFunctionAddress $0 "MakeDriveLink"
	   Exch $0
	   Call DetectDrives
	   # Add commands to install_octave.sh to detect and evaluate drive.link
	SectionEnd