############################ # Setup product information ############################ VENDOR="git-scm.com" PN="gitscm.core" NAME="Git SCM" DESCRIPTION="Git is a free and open source distributed version control system designed to handle everything from small to very large projects with speed and efficiency." VERSION="2.20.1.1" RELEASE="3" PRIORITY="0" ADVICE="" # TYPE - defines, if the install files are public or restricted. # Valid value: restricted | public TYPE="public" # replace points, split into array a=( ${VERSION//./ } ) DL_FILE[0]="git-logomark-orange.png" DL_SOURCE[0]="https://git-scm.com/images/logos/logomark-orange@2x.png" DL_FILE[1]="Git-${VERSION}-32-bit.exe" DL_SOURCE[1]="https://github.com/git-for-windows/git/releases/download/v${a[0]}.${a[1]}.${a[2]}.windows.${a[3]}/Git-${a[0]}.${a[1]}.${a[2]}-32-bit.exe" DL_ARCH[1]="X86" DL_WINST_NAME[1]=InstallExe32 DL_FILE[2]="Git-${VERSION}-64-bit.exe" DL_SOURCE[2]="https://github.com/git-for-windows/git/releases/download/v${a[0]}.${a[1]}.${a[2]}.windows.${a[3]}/Git-${a[0]}.${a[1]}.${a[2]}-64-bit.exe" DL_ARCH[2]="X86_64" DL_WINST_NAME[2]=InstallExe64 # File array index for the image showing while installing the program ICON_DL_INDEX=0 OPSI_INI_SECTION[0]="X86" OPSI_INI_OPTION[0]="UninstallProg32" OPSI_INI_VALUE[0]="unins000.exe" OPSI_INI_SECTION[1]="X86_64" OPSI_INI_OPTION[1]="UninstallProg64" OPSI_INI_VALUE[1]="unins000.exe"