contrib/packaging/inno/mercurial.iss
changeset 43564 d053d3f10b6a
parent 43563 7bd88d0d6a82
child 43565 24633444ff32
equal deleted inserted replaced
43563:7bd88d0d6a82 43564:d053d3f10b6a
    31 ArchitecturesInstallIn64BitMode=x64
    31 ArchitecturesInstallIn64BitMode=x64
    32 #else
    32 #else
    33 AppVerName=Mercurial {#VERSION}
    33 AppVerName=Mercurial {#VERSION}
    34 OutputBaseFilename=Mercurial-{#VERSION}
    34 OutputBaseFilename=Mercurial-{#VERSION}
    35 #endif
    35 #endif
    36 InfoAfterFile=contrib/win32/postinstall.txt
    36 InfoAfterFile=../postinstall.txt
    37 LicenseFile=COPYING
    37 LicenseFile=Copying.txt
    38 ShowLanguageDialog=yes
    38 ShowLanguageDialog=yes
    39 AppPublisher=Matt Mackall and others
    39 AppPublisher=Matt Mackall and others
    40 AppPublisherURL=https://mercurial-scm.org/
    40 AppPublisherURL=https://mercurial-scm.org/
    41 AppSupportURL=https://mercurial-scm.org/
    41 AppSupportURL=https://mercurial-scm.org/
    42 AppUpdatesURL=https://mercurial-scm.org/
    42 AppUpdatesURL=https://mercurial-scm.org/
    43 {{ 'AppID={{4B95A5F1-EF59-4B08-BED8-C891C46121B3}' }}
    43 {{ 'AppID={{4B95A5F1-EF59-4B08-BED8-C891C46121B3}' }}
    44 AppContact=mercurial@mercurial-scm.org
    44 AppContact=mercurial@mercurial-scm.org
    45 DefaultDirName={pf}\Mercurial
    45 DefaultDirName={pf}\Mercurial
    46 SourceDir=..\..
    46 SourceDir=stage
    47 VersionInfoDescription=Mercurial distributed SCM (version {#VERSION})
    47 VersionInfoDescription=Mercurial distributed SCM (version {#VERSION})
    48 VersionInfoCopyright=Copyright 2005-2019 Matt Mackall and others
    48 VersionInfoCopyright=Copyright 2005-2019 Matt Mackall and others
    49 VersionInfoCompany=Matt Mackall and others
    49 VersionInfoCompany=Matt Mackall and others
    50 InternalCompressLevel=max
    50 InternalCompressLevel=max
    51 SolidCompression=true
    51 SolidCompression=true
    52 SetupIconFile=contrib\win32\mercurial.ico
    52 SetupIconFile=../mercurial.ico
    53 AllowNoIcons=true
    53 AllowNoIcons=true
    54 DefaultGroupName=Mercurial
    54 DefaultGroupName=Mercurial
    55 PrivilegesRequired=none
    55 PrivilegesRequired=none
    56 ChangesEnvironment=true
    56 ChangesEnvironment=true
    57 
    57 
    58 [Files]
    58 [Files]
    59 Source: contrib\mercurial.el; DestDir: {app}/Contrib
    59 {% for entry in package_files -%}
    60 Source: contrib\vim\*.*; DestDir: {app}/Contrib/Vim
    60 Source: {{ entry.source }}; DestDir: {{ entry.dest_dir }}
    61 Source: contrib\zsh_completion; DestDir: {app}/Contrib
    61 {%- if entry.metadata %}; {{ entry.metadata }}{% endif %}
    62 Source: contrib\bash_completion; DestDir: {app}/Contrib
    62 {% endfor %}
    63 Source: contrib\tcsh_completion; DestDir: {app}/Contrib
       
    64 Source: contrib\tcsh_completion_build.sh; DestDir: {app}/Contrib
       
    65 Source: contrib\hgk; DestDir: {app}/Contrib; DestName: hgk.tcl
       
    66 Source: contrib\xml.rnc; DestDir: {app}/Contrib
       
    67 Source: contrib\mercurial.el; DestDir: {app}/Contrib
       
    68 Source: contrib\mq.el; DestDir: {app}/Contrib
       
    69 Source: contrib\hgweb.fcgi; DestDir: {app}/Contrib
       
    70 Source: contrib\hgweb.wsgi; DestDir: {app}/Contrib
       
    71 Source: contrib\win32\ReadMe.html; DestDir: {app}; Flags: isreadme
       
    72 Source: contrib\win32\postinstall.txt; DestDir: {app}; DestName: ReleaseNotes.txt
       
    73 Source: dist\hg.exe; DestDir: {app}; AfterInstall: Touch('{app}\hg.exe.local')
       
    74 Source: dist\lib\*.dll; Destdir: {app}\lib
       
    75 Source: dist\lib\*.pyd; Destdir: {app}\lib
       
    76 Source: dist\python*.dll; Destdir: {app}; Flags: skipifsourcedoesntexist
       
    77 Source: dist\msvc*.dll; DestDir: {app}; Flags: skipifsourcedoesntexist
       
    78 Source: dist\Microsoft.VC*.CRT.manifest; DestDir: {app}; Flags: skipifsourcedoesntexist
       
    79 Source: dist\lib\library.zip; DestDir: {app}\lib
       
    80 Source: doc\*.html; DestDir: {app}\Docs
       
    81 Source: doc\style.css; DestDir: {app}\Docs
       
    82 Source: mercurial\help\*.txt; DestDir: {app}\help
       
    83 Source: mercurial\help\internals\*.txt; DestDir: {app}\help\internals
       
    84 Source: mercurial\default.d\*.rc; DestDir: {app}\default.d
       
    85 Source: mercurial\locale\*.*; DestDir: {app}\locale; Flags: recursesubdirs createallsubdirs skipifsourcedoesntexist
       
    86 Source: mercurial\templates\*.*; DestDir: {app}\Templates; Flags: recursesubdirs createallsubdirs
       
    87 Source: CONTRIBUTORS; DestDir: {app}; DestName: Contributors.txt
       
    88 Source: COPYING; DestDir: {app}; DestName: Copying.txt
       
    89 
    63 
    90 [INI]
    64 [INI]
    91 Filename: {app}\Mercurial.url; Section: InternetShortcut; Key: URL; String: https://mercurial-scm.org/
    65 Filename: {app}\Mercurial.url; Section: InternetShortcut; Key: URL; String: https://mercurial-scm.org/
    92 Filename: {app}\default.d\editor.rc; Section: ui; Key: editor; String: notepad
    66 Filename: {app}\default.d\editor.rc; Section: ui; Key: editor; String: notepad
    93 
    67