I really have fun using newLISP. I don't understand all is written in this forum (
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
Show posts Menu
; NULLsoft Scriptable Install System
; make a newLISP Script executable
; Name of the installer (don't really care here because of silent below)
Name "Demo"
; Don't want a window, just unpack files and execute
SilentInstall silent
; Set a name for the resulting executable
OutFile "tcltk-app.exe"
; Set an icon (optional)
Icon "C:Program Filesnewlispnewlisp.ico"
; The installation directory
InstallDir "$TEMPtemp_NSIS"
; The stuff to install
Section ""
; Set output path to the installation directory.
SetOutPath $INSTDIR
; put here requiered files
File "C:Program Filesnewlispnewlisp-tk.exe" ; newLISP-tk interpreter
File "C:Program Filesnewlisptcltk-app.lsp" ; put the newLISP script
; Execute and wait for the newLISP script to end
ExecWait '"$INSTDIRnewlisp-tk.exe" "-s" "tcltk-app.lsp"'
; Delete unpacked files from hard drive
RMDir /r $INSTDIR
SectionEnd