|
|
|
|
@ -8,7 +8,7 @@ function usage {
|
|
|
|
|
echo "Optional parameters:"
|
|
|
|
|
echo " -d <Product Description> Adds a description to the package"
|
|
|
|
|
echo " -n <Product Name> Adds a product name instead of autogenerating one"
|
|
|
|
|
echo " -g yes Adds the Gruelag prefix to package ID and name"
|
|
|
|
|
echo " -g yes Adds the Gruelag prefix to package ID and name, do not manually add Gruelag when using this!"
|
|
|
|
|
echo " -u <Program URL> Downloads an installer file from the specified URL"
|
|
|
|
|
echo " -i <Logo URL> Applies a logo to the package from the specified URL"
|
|
|
|
|
echo " -t <Package Type> Sets the type of package to create, see below"
|
|
|
|
|
@ -22,9 +22,17 @@ function usage {
|
|
|
|
|
echo " execps Creates a blank ExecWith Powershell package"
|
|
|
|
|
echo " zip Creates a blank ZIP based package"
|
|
|
|
|
echo " msi Creates a blank MSI installer package"
|
|
|
|
|
echo " weblinks Creates a weblink creator package"
|
|
|
|
|
echo ""
|
|
|
|
|
echo "Optional parameters for ZIP type package:"
|
|
|
|
|
echo " -e <filename.exe> Specifies the launcher executable inside the ZIP file"
|
|
|
|
|
echo "Parameters for 'zip' type package:"
|
|
|
|
|
echo " -e <filename.exe> Optional, specifies the launcher executable inside the ZIP file"
|
|
|
|
|
echo ""
|
|
|
|
|
echo "Parameters for 'weblinks' type package:"
|
|
|
|
|
echo " -l <link name>;<target url>;[<where>] Can be used multiple times, specifies the URL and display name for one web link."
|
|
|
|
|
echo " <where> is optional and can hold one of the following values:"
|
|
|
|
|
echo " 'desktop' to create only desktop links on the public user desktop"
|
|
|
|
|
echo " 'startmenu' to create links only in the public user start menu"
|
|
|
|
|
echo " 'both' to create links at both places, this is the default"
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if [[ "$1" = "" ]]; then
|
|
|
|
|
@ -44,9 +52,10 @@ fi
|
|
|
|
|
# Defaults
|
|
|
|
|
programVersion="1.0"
|
|
|
|
|
pkgType="default"
|
|
|
|
|
weblinks=()
|
|
|
|
|
|
|
|
|
|
# Read command flags
|
|
|
|
|
while getopts ":d:g:n:t:e:u:i:v:" flag
|
|
|
|
|
while getopts ":d:g:n:t:e:u:i:v:l:" flag
|
|
|
|
|
do
|
|
|
|
|
case "${flag}" in
|
|
|
|
|
d) productDescription="${OPTARG}";;
|
|
|
|
|
@ -57,27 +66,48 @@ do
|
|
|
|
|
u) downloadUrl="${OPTARG}";;
|
|
|
|
|
i) imageUrl="${OPTARG}";;
|
|
|
|
|
v) programVersion="${OPTARG}";;
|
|
|
|
|
l) weblinks+=("${OPTARG}");;
|
|
|
|
|
*)
|
|
|
|
|
echo "Unrecognized option '${flag}'"
|
|
|
|
|
usage
|
|
|
|
|
exit 0
|
|
|
|
|
;;
|
|
|
|
|
esac
|
|
|
|
|
done
|
|
|
|
|
|
|
|
|
|
productId="${productIdPrefix}${productId}"
|
|
|
|
|
# Test if product ID was supplied empty
|
|
|
|
|
if [ "${productId}" = "" ]; then
|
|
|
|
|
echo "Product ID is empty, aborting!"
|
|
|
|
|
exit 1
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
fullProductName="${productName}"
|
|
|
|
|
|
|
|
|
|
# Generate product name from ID if it's not set
|
|
|
|
|
# Generate product name from ID if it is not set already
|
|
|
|
|
if [ "${productName}" = "" ]; then
|
|
|
|
|
# Replace dashes with spaces and uppercase first letter of every word
|
|
|
|
|
productName=$(echo "${productId//-/ }" | sed -r 's/\<./\U&/g')
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
echo "-- Package data --"
|
|
|
|
|
# Prepend optional prefixes to product name and ID if they aren't already
|
|
|
|
|
if [ "${productIdPrefix}" != "" ] && \
|
|
|
|
|
[ "${productId:0:${#productIdPrefix}}" != "${productIdPrefix}" ];
|
|
|
|
|
then
|
|
|
|
|
productId="${productIdPrefix}${productId}"
|
|
|
|
|
fullProductName="${productNamePrefix}${productName}"
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# Dump some package info
|
|
|
|
|
echo "-- Package info --"
|
|
|
|
|
echo "ID: ${productId}"
|
|
|
|
|
echo "Name: ${productName}"
|
|
|
|
|
echo "Name: ${fullProductName}"
|
|
|
|
|
echo "Description: ${productDescription}"
|
|
|
|
|
echo "Type: ${pkgType}"
|
|
|
|
|
echo "-- --"
|
|
|
|
|
echo ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
echo "Creating package directory..."
|
|
|
|
|
if [ -d "${productId}" ]; then
|
|
|
|
|
echo "A folder with the package name already exists"
|
|
|
|
|
@ -88,13 +118,13 @@ elif ! mkdir "${productId}"; then
|
|
|
|
|
fi
|
|
|
|
|
pushd "${productId}" >/dev/null
|
|
|
|
|
|
|
|
|
|
echo "Creating control file..."
|
|
|
|
|
|
|
|
|
|
cat >control <<-EOF
|
|
|
|
|
echo "Creating control file..."
|
|
|
|
|
cat >control <<EOF
|
|
|
|
|
[Product]
|
|
|
|
|
type: localboot
|
|
|
|
|
id: ${productId}
|
|
|
|
|
name: ${productNamePrefix} ${productName}
|
|
|
|
|
name: ${productName}
|
|
|
|
|
description: ${productDescription}
|
|
|
|
|
version: ${programVersion}
|
|
|
|
|
packageVersion: 1.0
|
|
|
|
|
@ -102,6 +132,8 @@ setupScript: install.ins
|
|
|
|
|
uninstallScript: remove.ins
|
|
|
|
|
EOF
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# Optionally download program file
|
|
|
|
|
if [ ! "${downloadUrl}" = "" ]; then
|
|
|
|
|
echo "Downloading program file..."
|
|
|
|
|
|
|
|
|
|
@ -110,13 +142,13 @@ if [ ! "${downloadUrl}" = "" ]; then
|
|
|
|
|
|
|
|
|
|
_filename=$(curl -f -s -w "%{filename_effective}" -L -O "${downloadUrl}")
|
|
|
|
|
if [ $? -ne 0 ]; then
|
|
|
|
|
echo "Curl did not manage to download the file from ${downloadUrl}"
|
|
|
|
|
echo "Curl failed to download the file from ${downloadUrl}"
|
|
|
|
|
else
|
|
|
|
|
bytes=$(wc -c "${_filename}" | awk '{ print $1 }')
|
|
|
|
|
if [ ${bytes} -le 1 ]; then
|
|
|
|
|
echo "Program file was downloaded, but is ${bytes} bytes in size!"
|
|
|
|
|
else
|
|
|
|
|
echo "Program file downloaded to data/${_filename}, ${bytes} length"
|
|
|
|
|
echo "Program file downloaded to data/${_filename}, ${bytes} bytes in size"
|
|
|
|
|
filename="${_filename}"
|
|
|
|
|
fi
|
|
|
|
|
fi
|
|
|
|
|
@ -124,7 +156,8 @@ if [ ! "${downloadUrl}" = "" ]; then
|
|
|
|
|
popd >/dev/null
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
## START Some reusable code snippets as variables:
|
|
|
|
|
|
|
|
|
|
# Some reusable code snippets as variables:
|
|
|
|
|
read -r -d '' Sub_HandleExitCode <<EOS
|
|
|
|
|
[Sub_HandleExitCode]
|
|
|
|
|
Set \$ExitCode\$ = GetLastExitCode
|
|
|
|
|
@ -148,7 +181,7 @@ LogError "Fatal: setup returned exit code " + \$ExitCode\$
|
|
|
|
|
IsFatalError
|
|
|
|
|
endif
|
|
|
|
|
EOS
|
|
|
|
|
## END Some resuable code snippets
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
echo "Creating install and remove script files for type ${pkgType}..."
|
|
|
|
|
case "${pkgType}" in
|
|
|
|
|
@ -458,7 +491,7 @@ msi)
|
|
|
|
|
[Actions]
|
|
|
|
|
ShowBitmap "%ScriptPath%\\logo.png" "${productName}"
|
|
|
|
|
WinBatch_Install
|
|
|
|
|
Sub_HandleExitCode
|
|
|
|
|
Sub_HandleExitCode_MSI
|
|
|
|
|
|
|
|
|
|
[WinBatch_Install]
|
|
|
|
|
msiexec /passive /i "%ScriptPath%\\data\\${_instFile}"
|
|
|
|
|
@ -483,6 +516,136 @@ msi)
|
|
|
|
|
EOF
|
|
|
|
|
|
|
|
|
|
echo "Make sure the WinBatch_Remove section in remove.ins does the right things!"
|
|
|
|
|
;;
|
|
|
|
|
weblinks)
|
|
|
|
|
cat >install.ins <<-EOF
|
|
|
|
|
[Initial]
|
|
|
|
|
Message=Installiere ${productName}...
|
|
|
|
|
DefVar \$PkgDir\$
|
|
|
|
|
|
|
|
|
|
[Actions]
|
|
|
|
|
ShowBitmap "%ScriptPath%\logo.png" "${productName}"
|
|
|
|
|
Sub_SetVars
|
|
|
|
|
Files_CopyIcons
|
|
|
|
|
Sub "%ScriptPath%\install-desktop.inc.ins"
|
|
|
|
|
Sub "%ScriptPath%\install-startmenu.inc.ins"
|
|
|
|
|
|
|
|
|
|
[Sub_SetVars]
|
|
|
|
|
Set \$PkgDir\$ = "%ProgramFilesDir%\%installingProdName%"
|
|
|
|
|
|
|
|
|
|
[Files_CopyIcons]
|
|
|
|
|
CheckTargetPath = "\$PkgDir\$"
|
|
|
|
|
Copy -s "%ScriptPath%\data\icons\" "\$PkgDir\$"
|
|
|
|
|
EOF
|
|
|
|
|
|
|
|
|
|
cat >remove.ins <<-EOF
|
|
|
|
|
[Initial]
|
|
|
|
|
Message=Entferne ${productName}...
|
|
|
|
|
DefVar $PkgDir$
|
|
|
|
|
|
|
|
|
|
[Actions]
|
|
|
|
|
ShowBitmap "%ScriptPath%\logo.png" "${productName}"
|
|
|
|
|
Sub_SetVars
|
|
|
|
|
Files_DeleteIcons
|
|
|
|
|
Sub "%ScriptPath%\remove-desktop.inc.ins"
|
|
|
|
|
Sub "%ScriptPath%\remove-startmenu.inc.ins"
|
|
|
|
|
|
|
|
|
|
[Sub_SetVars]
|
|
|
|
|
Set \$PkgDir\$ = "%ProgramFilesDir%\%installingProdName%"
|
|
|
|
|
|
|
|
|
|
[Files_DeleteIcons]
|
|
|
|
|
Del -s -f "\$PkgDir\$"
|
|
|
|
|
EOF
|
|
|
|
|
|
|
|
|
|
source ../fetch-favicon.sh
|
|
|
|
|
mkdir -p data/icons
|
|
|
|
|
|
|
|
|
|
desktopLinkFolderList=$(mktemp)
|
|
|
|
|
startMenuLinkFolderList=$(mktemp)
|
|
|
|
|
|
|
|
|
|
desktopRemoveFolderList=$(mktemp)
|
|
|
|
|
startMenuRemoveFolderList=$(mktemp)
|
|
|
|
|
|
|
|
|
|
for (( i = 0; i < ${#weblinks[@]}; i++ )); do
|
|
|
|
|
link=${weblinks[${i}]}
|
|
|
|
|
linkName=$(echo "${link}" | awk -F';' '{ print $1 }')
|
|
|
|
|
linkInternalName=$(sed "s/[^a-zA-Z-]/_/g" <<< ${linkName})
|
|
|
|
|
linkTarget=$(echo "${link}" | awk -F';' '{ print $2 }')
|
|
|
|
|
linkLocation=$(echo "${link}" | awk -F';' '{ print $3 }')
|
|
|
|
|
|
|
|
|
|
# Desktop entries
|
|
|
|
|
if [ "${linkLocation}" = "desktop" ] || [ "${linkLocation}" = "both" ]; then
|
|
|
|
|
echo "LinkFolder_Desktop_${linkInternalName}" >> "install-desktop.inc.ins"
|
|
|
|
|
echo "LinkFolder_Remove_Desktop_${linkInternalName}" >> "remove-desktop.inc.ins"
|
|
|
|
|
|
|
|
|
|
cat >>"${desktopLinkFolderList}" <<EOP
|
|
|
|
|
[LinkFolder_Desktop_${linkInternalName}]
|
|
|
|
|
Set_BaseFolder Common_DesktopDirectory
|
|
|
|
|
Set_SubFolder ""
|
|
|
|
|
Set_Link
|
|
|
|
|
Name: ${linkName}
|
|
|
|
|
Target: "${linkTarget}"
|
|
|
|
|
Icon_File: "\$PkgDir\$\\${linkInternalName}.ico"
|
|
|
|
|
End_Link
|
|
|
|
|
|
|
|
|
|
EOP
|
|
|
|
|
|
|
|
|
|
cat >>"${desktopRemoveFolderList}" <<-EOP
|
|
|
|
|
[LinkFolder_Remove_Desktop_${linkInternalName}]
|
|
|
|
|
Set_BaseFolder Common_DesktopDirectory
|
|
|
|
|
Set_SubFolder ""
|
|
|
|
|
Delete_Element "${linkName}"
|
|
|
|
|
|
|
|
|
|
EOP
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
# Start menu entries
|
|
|
|
|
if [ "${linkLocation}" = "startmenu" ] || [ "${linkLocation}" = "both" ]; then
|
|
|
|
|
echo "LinkFolder_StartMenu_${linkInternalName}" >> "install-startmenu.inc.ins"
|
|
|
|
|
echo "LinkFolder_Remove_StartMenu_${linkInternalName}" >> "remove-startmenu.inc.ins"
|
|
|
|
|
|
|
|
|
|
cat >>"${startMenuLinkFolderList}" <<EOP
|
|
|
|
|
[LinkFolder_StartMenu_${linkInternalName}]
|
|
|
|
|
Set_BaseFolder Common_StartMenu
|
|
|
|
|
Set_SubFolder ""
|
|
|
|
|
Set_Link
|
|
|
|
|
Name: ${linkName}
|
|
|
|
|
Target: "${linkTarget}"
|
|
|
|
|
Icon_File: "\$PkgDir\$\\${linkInternalName}.ico"
|
|
|
|
|
End_Link
|
|
|
|
|
|
|
|
|
|
EOP
|
|
|
|
|
|
|
|
|
|
cat >>"${startMenuRemoveFolderList}" <<-EOP
|
|
|
|
|
[LinkFolder_Remove_StartMenu_${linkInternalName}]
|
|
|
|
|
Set_BaseFolder Common_StartMenu
|
|
|
|
|
Set_SubFolder ""
|
|
|
|
|
Delete_Element "${linkName}"
|
|
|
|
|
|
|
|
|
|
EOP
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
fetchFavicon "${linkTarget}" "data/icons/${linkInternalName}.ico"
|
|
|
|
|
done
|
|
|
|
|
|
|
|
|
|
echo >> "install-desktop.inc.ins"
|
|
|
|
|
cat "${desktopLinkFolderList}" >> "install-desktop.inc.ins"
|
|
|
|
|
|
|
|
|
|
echo >> "install-startmenu.inc.ins"
|
|
|
|
|
cat "${startMenuLinkFolderList}" >> "install-startmenu.inc.ins"
|
|
|
|
|
|
|
|
|
|
echo >> "remove-desktop.inc.ins"
|
|
|
|
|
cat "${desktopRemoveFolderList}" >> "remove-desktop.inc.ins"
|
|
|
|
|
|
|
|
|
|
echo >> "remove-startmenu.inc.ins"
|
|
|
|
|
cat "${startMenuRemoveFolderList}" >> "remove-startmenu.inc.ins"
|
|
|
|
|
|
|
|
|
|
rm "${desktopLinkFolderList}"
|
|
|
|
|
rm "${startMenuLinkFolderList}"
|
|
|
|
|
rm "${desktopRemoveFolderList}"
|
|
|
|
|
rm "${startMenuRemoveFolderList}"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
;;
|
|
|
|
|
*)
|
|
|
|
|
cat >install.ins <<-EOF
|
|
|
|
|
|