242 lines
		
	
	
	
		
			7.8 KiB
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
			
		
		
	
	
			242 lines
		
	
	
	
		
			7.8 KiB
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
set -e
 | 
						|
FullExecPath=$PWD
 | 
						|
pushd `dirname $0` > /dev/null
 | 
						|
FullScriptPath=`pwd`
 | 
						|
popd > /dev/null
 | 
						|
 | 
						|
if [ ! -d "$FullScriptPath/../../../DesktopPrivate" ]; then
 | 
						|
  echo ""
 | 
						|
  echo "This script is for building the production version of Telegram Desktop."
 | 
						|
  echo ""
 | 
						|
  echo "For building custom versions please visit the build instructions page at:"
 | 
						|
  echo "https://github.com/telegramdesktop/tdesktop/#build-instructions"
 | 
						|
  exit
 | 
						|
fi
 | 
						|
 | 
						|
Error () {
 | 
						|
  cd $FullExecPath
 | 
						|
  echo "$1"
 | 
						|
  exit 1
 | 
						|
}
 | 
						|
 | 
						|
DeployTarget="$1"
 | 
						|
 | 
						|
if [ ! -f "$FullScriptPath/target" ]; then
 | 
						|
  Error "Build target not found!"
 | 
						|
fi
 | 
						|
 | 
						|
while IFS='' read -r line || [[ -n "$line" ]]; do
 | 
						|
  BuildTarget="$line"
 | 
						|
done < "$FullScriptPath/target"
 | 
						|
 | 
						|
while IFS='' read -r line || [[ -n "$line" ]]; do
 | 
						|
  set $line
 | 
						|
  eval $1="$2"
 | 
						|
done < "$FullScriptPath/version"
 | 
						|
 | 
						|
if [ "$AlphaVersion" != "0" ]; then
 | 
						|
  AppVersion="$AlphaVersion"
 | 
						|
  AppVersionStrFull="${AppVersionStr}_${AlphaVersion}"
 | 
						|
  AlphaKeyFile="talpha_${AppVersion}_key"
 | 
						|
elif [ "$BetaChannel" == "0" ]; then
 | 
						|
  AppVersionStrFull="$AppVersionStr"
 | 
						|
else
 | 
						|
  AppVersionStrFull="$AppVersionStr.beta"
 | 
						|
fi
 | 
						|
 | 
						|
echo ""
 | 
						|
HomePath="$FullScriptPath/.."
 | 
						|
DeployMac="0"
 | 
						|
DeployOsx="0"
 | 
						|
DeployWin="0"
 | 
						|
DeployWin64="0"
 | 
						|
DeployLinux="0"
 | 
						|
DeployLinux32="0"
 | 
						|
if [ "$DeployTarget" == "mac" ]; then
 | 
						|
  DeployMac="1"
 | 
						|
  echo "Deploying version $AppVersionStrFull for macOS.."
 | 
						|
elif [ "$DeployTarget" == "osx" ]; then
 | 
						|
  DeployOsx="1"
 | 
						|
  echo "Deploying version $AppVersionStrFull for OS X 10.10 and 10.11.."
 | 
						|
elif [ "$DeployTarget" == "win" ]; then
 | 
						|
  DeployWin="1"
 | 
						|
  echo "Deploying version $AppVersionStrFull for Windows 32 bit.."
 | 
						|
elif [ "$DeployTarget" == "win64" ]; then
 | 
						|
  DeployWin64="1"
 | 
						|
  echo "Deploying version $AppVersionStrFull for Windows 64 bit.."
 | 
						|
elif [ "$DeployTarget" == "linux" ]; then
 | 
						|
  DeployLinux="1"
 | 
						|
  echo "Deploying version $AppVersionStrFull for Linux 64 bit.."
 | 
						|
elif [ "$DeployTarget" == "linux32" ]; then
 | 
						|
  DeployLinux32="1"
 | 
						|
  echo "Deploying version $AppVersionStrFull for Linux 32 bit.."
 | 
						|
else
 | 
						|
  DeployMac="1"
 | 
						|
  DeployWin="1"
 | 
						|
  DeployWin64="1"
 | 
						|
  DeployLinux="1"
 | 
						|
  echo "Deploying four versions of $AppVersionStrFull: for Windows 32 bit, Windows 64 bit, macOS and Linux 64 bit.."
 | 
						|
fi
 | 
						|
if [ "$BuildTarget" == "mac" ]; then
 | 
						|
  BackupPath="$HOME/Projects/backup/tdesktop"
 | 
						|
elif [ "$BuildTarget" == "linux" ]; then
 | 
						|
  BackupPath="/media/psf/Home/Projects/backup/tdesktop"
 | 
						|
else
 | 
						|
  Error "Can't deploy here"
 | 
						|
fi
 | 
						|
MacDeployPath="$BackupPath/$AppVersionStrMajor/$AppVersionStrFull/tmac"
 | 
						|
MacUpdateFile="tmacupd$AppVersion"
 | 
						|
MacSetupFile="tsetup.$AppVersionStrFull.dmg"
 | 
						|
MacRemoteFolder="tmac"
 | 
						|
OsxDeployPath="$BackupPath/$AppVersionStrMajor/$AppVersionStrFull/tosx"
 | 
						|
OsxUpdateFile="tosxupd$AppVersion"
 | 
						|
OsxSetupFile="tsetup-osx.$AppVersionStrFull.dmg"
 | 
						|
OsxRemoteFolder="tosx"
 | 
						|
WinDeployPath="$BackupPath/$AppVersionStrMajor/$AppVersionStrFull/tsetup"
 | 
						|
WinUpdateFile="tupdate$AppVersion"
 | 
						|
WinSetupFile="tsetup.$AppVersionStrFull.exe"
 | 
						|
WinPortableFile="tportable.$AppVersionStrFull.zip"
 | 
						|
WinRemoteFolder="tsetup"
 | 
						|
Win64DeployPath="$BackupPath/$AppVersionStrMajor/$AppVersionStrFull/tx64"
 | 
						|
Win64UpdateFile="tx64upd$AppVersion"
 | 
						|
Win64SetupFile="tsetup-x64.$AppVersionStrFull.exe"
 | 
						|
Win64PortableFile="tportable-x64.$AppVersionStrFull.zip"
 | 
						|
Win64RemoteFolder="tx64"
 | 
						|
LinuxDeployPath="$BackupPath/$AppVersionStrMajor/$AppVersionStrFull/tlinux"
 | 
						|
LinuxUpdateFile="tlinuxupd$AppVersion"
 | 
						|
LinuxSetupFile="tsetup.$AppVersionStrFull.tar.xz"
 | 
						|
LinuxRemoteFolder="tlinux"
 | 
						|
Linux32DeployPath="$BackupPath/$AppVersionStrMajor/$AppVersionStrFull/tlinux32"
 | 
						|
Linux32UpdateFile="tlinux32upd$AppVersion"
 | 
						|
Linux32SetupFile="tsetup32.$AppVersionStrFull.tar.xz"
 | 
						|
Linux32RemoteFolder="tlinux32"
 | 
						|
DeployPath="$BackupPath/$AppVersionStrMajor/$AppVersionStrFull"
 | 
						|
 | 
						|
if [ "$AlphaVersion" != "0" ]; then
 | 
						|
  if [ "$DeployTarget" == "win" ]; then
 | 
						|
    AlphaFilePath="$WinDeployPath/$AlphaKeyFile"
 | 
						|
  elif [ "$DeployTarget" == "win64" ]; then
 | 
						|
    AlphaFilePath="$Win64DeployPath/$AlphaKeyFile"
 | 
						|
  elif [ "$DeployTarget" == "osx" ]; then
 | 
						|
    AlphaFilePath="$OsxDeployPath/$AlphaKeyFile"
 | 
						|
  elif [ "$DeployTarget" == "linux" ]; then
 | 
						|
    AlphaFilePath="$LinuxDeployPath/$AlphaKeyFile"
 | 
						|
  elif [ "$DeployTarget" == "linux32" ]; then
 | 
						|
    AlphaFilePath="$Linux32DeployPath/$AlphaKeyFile"
 | 
						|
  else
 | 
						|
    AlphaFilePath="$MacDeployPath/$AlphaKeyFile"
 | 
						|
  fi
 | 
						|
  if [ ! -f "$AlphaFilePath" ]; then
 | 
						|
    Error "Alpha key file for $AppVersionStrFull not found."
 | 
						|
  fi
 | 
						|
 | 
						|
  while IFS='' read -r line || [[ -n "$line" ]]; do
 | 
						|
    AlphaSignature="$line"
 | 
						|
  done < "$AlphaFilePath"
 | 
						|
 | 
						|
  MacUpdateFile="${MacUpdateFile}_${AlphaSignature}"
 | 
						|
  MacSetupFile="talpha${AlphaVersion}_${AlphaSignature}.zip"
 | 
						|
  OsxUpdateFile="${OsxUpdateFile}_${AlphaSignature}"
 | 
						|
  OsxSetupFile="talpha${AlphaVersion}_${AlphaSignature}.zip"
 | 
						|
  WinUpdateFile="${WinUpdateFile}_${AlphaSignature}"
 | 
						|
  WinPortableFile="talpha${AlphaVersion}_${AlphaSignature}.zip"
 | 
						|
  Win64UpdateFile="${Win64UpdateFile}_${AlphaSignature}"
 | 
						|
  Win64PortableFile="talpha${AlphaVersion}_${AlphaSignature}.zip"
 | 
						|
  LinuxUpdateFile="${LinuxUpdateFile}_${AlphaSignature}"
 | 
						|
  LinuxSetupFile="talpha${AlphaVersion}_${AlphaSignature}.tar.xz"
 | 
						|
  Linux32UpdateFile="${Linux32UpdateFile}_${AlphaSignature}"
 | 
						|
  Linux32SetupFile="talpha${AlphaVersion}_${AlphaSignature}.tar.xz"
 | 
						|
fi
 | 
						|
 | 
						|
if [ "$DeployMac" == "1" ]; then
 | 
						|
  if [ ! -f "$MacDeployPath/$MacUpdateFile" ]; then
 | 
						|
    Error "$MacDeployPath/$MacUpdateFile not found!";
 | 
						|
  fi
 | 
						|
  if [ ! -f "$MacDeployPath/$MacSetupFile" ]; then
 | 
						|
    Error "$MacDeployPath/$MacSetupFile not found!"
 | 
						|
  fi
 | 
						|
fi
 | 
						|
if [ "$DeployOsx" == "1" ]; then
 | 
						|
  if [ ! -f "$OsxDeployPath/$OsxUpdateFile" ]; then
 | 
						|
    Error "$OsxUpdateFile not found!"
 | 
						|
  fi
 | 
						|
  if [ ! -f "$OsxDeployPath/$OsxSetupFile" ]; then
 | 
						|
    Error "$OsxSetupFile not found!"
 | 
						|
  fi
 | 
						|
fi
 | 
						|
if [ "$DeployWin" == "1" ]; then
 | 
						|
  if [ ! -f "$WinDeployPath/$WinUpdateFile" ]; then
 | 
						|
    Error "$WinUpdateFile not found!"
 | 
						|
  fi
 | 
						|
  if [ "$AlphaVersion" == "0" ]; then
 | 
						|
    if [ ! -f "$WinDeployPath/$WinSetupFile" ]; then
 | 
						|
      Error "$WinSetupFile not found!"
 | 
						|
    fi
 | 
						|
  fi
 | 
						|
  if [ ! -f "$WinDeployPath/$WinPortableFile" ]; then
 | 
						|
    Error "$WinPortableFile not found!"
 | 
						|
  fi
 | 
						|
fi
 | 
						|
if [ "$DeployWin64" == "1" ]; then
 | 
						|
  if [ ! -f "$Win64DeployPath/$Win64UpdateFile" ]; then
 | 
						|
    Error "$Win64UpdateFile not found!"
 | 
						|
  fi
 | 
						|
  if [ "$AlphaVersion" == "0" ]; then
 | 
						|
    if [ ! -f "$Win64DeployPath/$Win64SetupFile" ]; then
 | 
						|
      Error "$Win64SetupFile not found!"
 | 
						|
    fi
 | 
						|
  fi
 | 
						|
  if [ ! -f "$Win64DeployPath/$Win64PortableFile" ]; then
 | 
						|
    Error "$Win64PortableFile not found!"
 | 
						|
  fi
 | 
						|
fi
 | 
						|
if [ "$DeployLinux" == "1" ]; then
 | 
						|
  if [ ! -f "$LinuxDeployPath/$LinuxUpdateFile" ]; then
 | 
						|
    Error "$LinuxDeployPath/$LinuxUpdateFile not found!"
 | 
						|
  fi
 | 
						|
  if [ ! -f "$LinuxDeployPath/$LinuxSetupFile" ]; then
 | 
						|
    Error "$LinuxDeployPath/$LinuxSetupFile not found!"
 | 
						|
  fi
 | 
						|
fi
 | 
						|
if [ "$DeployLinux32" == "1" ]; then
 | 
						|
  if [ ! -f "$Linux32DeployPath/$Linux32UpdateFile" ]; then
 | 
						|
    Error "$Linux32DeployPath/$Linux32UpdateFile not found!"
 | 
						|
  fi
 | 
						|
  if [ ! -f "$Linux32DeployPath/$Linux32SetupFile" ]; then
 | 
						|
    Error "$Linux32DeployPath/$Linux32SetupFile not found!"
 | 
						|
  fi
 | 
						|
fi
 | 
						|
 | 
						|
$FullScriptPath/../../../DesktopPrivate/mount.sh
 | 
						|
 | 
						|
declare -a Files
 | 
						|
if [ "$DeployMac" == "1" ]; then
 | 
						|
  Files+=("tmac/$MacUpdateFile" "tmac/$MacSetupFile")
 | 
						|
fi
 | 
						|
if [ "$DeployOsx" == "1" ]; then
 | 
						|
  Files+=("tosx/$OsxUpdateFile" "tosx/$OsxSetupFile")
 | 
						|
fi
 | 
						|
if [ "$DeployWin" == "1" ]; then
 | 
						|
  Files+=("tsetup/$WinUpdateFile" "tsetup/$WinPortableFile")
 | 
						|
  if [ "$AlphaVersion" == "0" ]; then
 | 
						|
    Files+=("tsetup/$WinSetupFile")
 | 
						|
  fi
 | 
						|
fi
 | 
						|
if [ "$DeployWin64" == "1" ]; then
 | 
						|
  Files+=("tx64/$Win64UpdateFile" "tx64/$Win64PortableFile")
 | 
						|
  if [ "$AlphaVersion" == "0" ]; then
 | 
						|
    Files+=("tx64/$Win64SetupFile")
 | 
						|
  fi
 | 
						|
fi
 | 
						|
if [ "$DeployLinux" == "1" ]; then
 | 
						|
  Files+=("tlinux/$LinuxUpdateFile" "tlinux/$LinuxSetupFile")
 | 
						|
fi
 | 
						|
if [ "$DeployLinux32" == "1" ]; then
 | 
						|
  Files+=("tlinux32/$Linux32UpdateFile" "tlinux32/$Linux32SetupFile")
 | 
						|
fi
 | 
						|
cd $DeployPath
 | 
						|
rsync -avR --progress ${Files[@]} "$FullScriptPath/../../../DesktopPrivate/remote/files"
 | 
						|
 | 
						|
echo "Version $AppVersionStrFull was deployed!"
 | 
						|
cd $FullExecPath
 | 
						|
 |