You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
157 lines
3.3 KiB
157 lines
3.3 KiB
#!/bin/bash |
|
|
|
scriptPath="$( cd "$(dirname "${0}")" ; pwd -P )" |
|
synergyCorePath="${scriptPath}/Synergy-Core" |
|
buildPath="${synergyCorePath}/build" |
|
binariesPath="${scriptPath}/Binaries" |
|
|
|
source /etc/os-release || exit 1 |
|
linuxVersion="${ID}-${VERSION_CODENAME}" |
|
|
|
cat "${synergyCorePath}/Build.properties" | perl -pe "s/(SYNERGY\w+) *= */export \1=/" > "${buildPath}/version" || exit 1 |
|
source "${buildPath}/version" || exit 1 |
|
synergyVersion="${SYNERGY_VERSION_MAJOR}.${SYNERGY_VERSION_MINOR}.${SYNERGY_VERSION_PATCH}" |
|
|
|
buildCMake() { |
|
|
|
cmake -S "${synergyCorePath}" -B "${buildPath}" -D CMAKE_BUILD_TYPE=MINSIZEREL -D SYNERGY_ENTERPRISE=ON || exit 1 |
|
cmake --build "${buildPath}" --parallel 8 || exit 1 |
|
|
|
} |
|
|
|
buildAppImage() { |
|
|
|
pushd "${buildPath}" || exit 1 |
|
|
|
wget -O linuxdeploy -c https://github.com/linuxdeploy/linuxdeploy/releases/download/continuous/linuxdeploy-x86_64.AppImage || exit 1 |
|
chmod a+x linuxdeploy || exit 1 |
|
|
|
# Needed by linuxdeploy |
|
export VERSION="${synergyVersion}-${linuxVersion}" |
|
|
|
appImagePath="${buildPath}/Synergy-${VERSION}.AppDir" |
|
|
|
./linuxdeploy \ |
|
--appdir "${appImagePath}" \ |
|
--executable "${buildPath}/bin/synergy" \ |
|
--executable "${buildPath}/bin/synergyc" \ |
|
--executable "${buildPath}/bin/synergyd" \ |
|
--executable "${buildPath}/bin/synergys" \ |
|
--executable "${buildPath}/bin/syntool" \ |
|
--create-desktop-file \ |
|
--icon-file "${synergyCorePath}/res/synergy.svg" \ |
|
--output appimage || exit 1 |
|
|
|
mv "${buildPath}/"*.AppImage "${binariesPath}" |
|
|
|
popd |
|
|
|
} |
|
|
|
buildDeb() { |
|
|
|
pushd "${synergyCorePath}" || exit 1 |
|
|
|
printf "synergy (${synergyVersion}) ${SYNERGY_VERSION_STAGE}; urgency=medium\n" > "debian/changelog" || exit 1 |
|
debuild --set-envvar CMAKE_BUILD_TYPE=MINSIZEREL --set-envvar SYNERGY_ENTERPRISE=ON -us -uc || exit 1 |
|
git clean -fd |
|
|
|
popd |
|
|
|
mv "${synergyCorePath}/../"*.deb "${binariesPath}" |
|
|
|
rename "s/(\\d+\\.\\d+.\\d+)/\$1-${linuxVersion}/g" "${binariesPath}"/*.deb |
|
|
|
mv "${synergyCorePath}/../synergy_${synergyVersion}"* "${buildPath}" |
|
mv "${synergyCorePath}/../synergy-dbgsym_${synergyVersion}"* "${buildPath}" |
|
|
|
} |
|
|
|
buildClean() { |
|
|
|
pushd "${synergyCorePath}" || exit 1 |
|
|
|
git clean -fd |
|
|
|
popd |
|
|
|
rm -fR "${buildPath}/"* |
|
rm -fR "${binariesPath}/"* |
|
|
|
touch "${buildPath}/.keep" |
|
touch "${binariesPath}/.keep" |
|
|
|
} |
|
|
|
if [ "${1}" = "--help" ] || [ "${1}" = "-h" ]; then |
|
|
|
echo \ |
|
"NAME |
|
|
|
${0} - Build Linux Binaries for Synergy |
|
|
|
SYNOPSIS |
|
|
|
${0} [OPTION] |
|
|
|
DESCRIPTION |
|
|
|
Synergy is a keyboard and mouse sharing tool for devices connected over a network. |
|
As of version 1.8.8, Synergy maintainers only publish binaries behind a pay wall. |
|
The other alternative is building Synergy from sources. This tool will help you do that. |
|
|
|
-h, --help |
|
|
|
Display this help message. |
|
|
|
--cmake |
|
|
|
Build binaries only with CMake. |
|
|
|
--appimage |
|
|
|
Build an AppImage package. |
|
|
|
--deb |
|
|
|
Build a Debian package. |
|
|
|
--all |
|
|
|
Build all packages. |
|
|
|
--clean |
|
|
|
Clean the build and output locations." |
|
|
|
exit 0 |
|
|
|
elif [ "${1}" = "--cmake" ]; then |
|
|
|
buildCMake |
|
|
|
elif [ "${1}" = "--appimage" ]; then |
|
|
|
buildCMake # Prerequisite for an AppImage |
|
buildAppImage |
|
|
|
elif [ "${1}" = "--deb" ]; then |
|
|
|
buildDeb |
|
|
|
elif [ "${1}" = "--all" ]; then |
|
|
|
buildCMake |
|
buildAppImage |
|
buildDeb |
|
|
|
elif [ "${1}" = "--clean" ]; then |
|
|
|
buildClean |
|
|
|
else |
|
|
|
echo "error: Bad or unknown option. Run with '--help' option for details." |
|
exit 1 |
|
|
|
fi |