File: parl.nsi

package info (click to toggle)
libpar-packer-perl 1.063-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 1,380 kB
  • sloc: perl: 12,859; ansic: 1,486; makefile: 30; sh: 5
file content (22 lines) | stat: -rw-r--r-- 492 bytes parent folder | download | duplicates (9)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
SetCompressor bzip2

!define MUI_VERSION "0.62"
!define MUI_NAME    "parl"
!define PERL_PATH   "C:\perl"

XPStyle On
Name "PAR Loader"
DirText "Select the location of parl.exe:"
OutFile "${MUI_NAME}-${MUI_VERSION}-win32.exe"
InstallDir $SYSDIR
AutoCloseWindow true
ShowInstDetails hide
InstallColors /windows
InstProgressFlags smooth colored

Section "Install"
    SetOverwrite try
    SetOutPath $INSTDIR
    File "${PERL_PATH}\bin\parl.exe"
    File "${PERL_PATH}\bin\perl*.dll"
SectionEnd