mirror of
https://github.com/LizardByte/Sunshine.git
synced 2024-11-16 23:10:13 +00:00
0164be613e
Some checks are pending
CI / GitHub Env Debug (push) Waiting to run
CI / Setup Release (push) Waiting to run
CI / Setup Flatpak Matrix (push) Waiting to run
CI / Linux Flatpak (push) Blocked by required conditions
CI / Linux ${{ matrix.type }} (--appimage-build, 22.04, AppImage) (push) Blocked by required conditions
CI / Homebrew (${{ matrix.os_name }}-${{ matrix.os_version }}${{ matrix.release == true && ' (Release)' || '' }}) (macos, 12) (push) Blocked by required conditions
CI / Homebrew (${{ matrix.os_name }}-${{ matrix.os_version }}${{ matrix.release == true && ' (Release)' || '' }}) (macos, 13) (push) Blocked by required conditions
CI / Homebrew (${{ matrix.os_name }}-${{ matrix.os_version }}${{ matrix.release == true && ' (Release)' || '' }}) (macos, 14) (push) Blocked by required conditions
CI / Homebrew (${{ matrix.os_name }}-${{ matrix.os_version }}${{ matrix.release == true && ' (Release)' || '' }}) (ubuntu, latest) (push) Blocked by required conditions
CI / Homebrew (${{ matrix.os_name }}-${{ matrix.os_version }}${{ matrix.release == true && ' (Release)' || '' }}) (ubuntu, latest, true) (push) Blocked by required conditions
CI / Macports (macOS-${{ matrix.os_version }}) (12, true) (push) Blocked by required conditions
CI / Macports (macOS-${{ matrix.os_version }}) (13) (push) Blocked by required conditions
CI / Macports (macOS-${{ matrix.os_version }}) (14) (push) Blocked by required conditions
CI / Windows (push) Blocked by required conditions
CI Docker / Check Dockerfiles (push) Waiting to run
CI Docker / Setup Release (push) Blocked by required conditions
CI Docker / Lint Dockerfile${{ matrix.tag }} (push) Blocked by required conditions
CI Docker / Docker${{ matrix.tag }} (push) Blocked by required conditions
CodeQL / Get language matrix (push) Waiting to run
CodeQL / Analyze (${{ matrix.name }}) (push) Blocked by required conditions
Build GH-Pages / update_pages (push) Waiting to run
155 lines
6.3 KiB
CMake
155 lines
6.3 KiB
CMake
# linux specific packaging
|
|
|
|
install(DIRECTORY "${SUNSHINE_SOURCE_ASSETS_DIR}/linux/assets/"
|
|
DESTINATION "${SUNSHINE_ASSETS_DIR}")
|
|
|
|
# copy assets (excluding shaders) to build directory, for running without install
|
|
file(COPY "${SUNSHINE_SOURCE_ASSETS_DIR}/linux/assets/"
|
|
DESTINATION "${CMAKE_BINARY_DIR}/assets"
|
|
PATTERN "shaders" EXCLUDE)
|
|
# use symbolic link for shaders directory
|
|
file(CREATE_LINK "${SUNSHINE_SOURCE_ASSETS_DIR}/linux/assets/shaders"
|
|
"${CMAKE_BINARY_DIR}/assets/shaders" COPY_ON_ERROR SYMBOLIC)
|
|
|
|
if(${SUNSHINE_BUILD_APPIMAGE} OR ${SUNSHINE_BUILD_FLATPAK})
|
|
install(FILES "${SUNSHINE_SOURCE_ASSETS_DIR}/linux/misc/60-sunshine.rules"
|
|
DESTINATION "${SUNSHINE_ASSETS_DIR}/udev/rules.d")
|
|
install(FILES "${CMAKE_CURRENT_BINARY_DIR}/sunshine.service"
|
|
DESTINATION "${SUNSHINE_ASSETS_DIR}/systemd/user")
|
|
else()
|
|
find_package(Systemd)
|
|
find_package(Udev)
|
|
|
|
if(UDEV_FOUND)
|
|
install(FILES "${SUNSHINE_SOURCE_ASSETS_DIR}/linux/misc/60-sunshine.rules"
|
|
DESTINATION "${UDEV_RULES_INSTALL_DIR}")
|
|
endif()
|
|
if(SYSTEMD_FOUND)
|
|
install(FILES "${CMAKE_CURRENT_BINARY_DIR}/sunshine.service"
|
|
DESTINATION "${SYSTEMD_USER_UNIT_INSTALL_DIR}")
|
|
endif()
|
|
endif()
|
|
|
|
# Post install
|
|
set(CPACK_DEBIAN_PACKAGE_CONTROL_EXTRA "${SUNSHINE_SOURCE_ASSETS_DIR}/linux/misc/postinst")
|
|
set(CPACK_RPM_POST_INSTALL_SCRIPT_FILE "${SUNSHINE_SOURCE_ASSETS_DIR}/linux/misc/postinst")
|
|
|
|
# Apply setcap for RPM
|
|
# https://github.com/coreos/rpm-ostree/discussions/5036#discussioncomment-10291071
|
|
set(CPACK_RPM_USER_FILELIST "%caps(cap_sys_admin+p) ${SUNSHINE_EXECUTABLE_PATH}")
|
|
|
|
# Dependencies
|
|
set(CPACK_DEB_COMPONENT_INSTALL ON)
|
|
set(CPACK_DEBIAN_PACKAGE_DEPENDS "\
|
|
${CPACK_DEB_PLATFORM_PACKAGE_DEPENDS} \
|
|
libcap2, \
|
|
libcurl4, \
|
|
libdrm2, \
|
|
libevdev2, \
|
|
libnuma1, \
|
|
libopus0, \
|
|
libpulse0, \
|
|
libva2, \
|
|
libva-drm2, \
|
|
libvdpau1, \
|
|
libwayland-client0, \
|
|
libx11-6, \
|
|
miniupnpc, \
|
|
openssl | libssl3")
|
|
set(CPACK_RPM_PACKAGE_REQUIRES "\
|
|
${CPACK_RPM_PLATFORM_PACKAGE_REQUIRES} \
|
|
libcap >= 2.22, \
|
|
libcurl >= 7.0, \
|
|
libdrm >= 2.4.97, \
|
|
libevdev >= 1.5.6, \
|
|
libopusenc >= 0.2.1, \
|
|
libva >= 2.14.0, \
|
|
libvdpau >= 1.5, \
|
|
libwayland-client >= 1.20.0, \
|
|
libX11 >= 1.7.3.1, \
|
|
miniupnpc >= 2.2.4, \
|
|
numactl-libs >= 2.0.14, \
|
|
openssl >= 3.0.2, \
|
|
pulseaudio-libs >= 10.0")
|
|
|
|
if(NOT BOOST_USE_STATIC)
|
|
set(CPACK_DEBIAN_PACKAGE_DEPENDS "\
|
|
${CPACK_DEBIAN_PACKAGE_DEPENDS}, \
|
|
libboost-filesystem${Boost_VERSION}, \
|
|
libboost-locale${Boost_VERSION}, \
|
|
libboost-log${Boost_VERSION}, \
|
|
libboost-program-options${Boost_VERSION}")
|
|
set(CPACK_RPM_PACKAGE_REQUIRES "\
|
|
${CPACK_RPM_PACKAGE_REQUIRES}, \
|
|
boost-filesystem >= ${Boost_VERSION}, \
|
|
boost-locale >= ${Boost_VERSION}, \
|
|
boost-log >= ${Boost_VERSION}, \
|
|
boost-program-options >= ${Boost_VERSION}")
|
|
endif()
|
|
|
|
# This should automatically figure out dependencies, doesn't work with the current config
|
|
set(CPACK_DEBIAN_PACKAGE_SHLIBDEPS OFF)
|
|
|
|
# application icon
|
|
if(NOT ${SUNSHINE_BUILD_FLATPAK})
|
|
install(FILES "${CMAKE_SOURCE_DIR}/sunshine.svg"
|
|
DESTINATION "${CMAKE_INSTALL_DATAROOTDIR}/icons/hicolor/scalable/apps")
|
|
else()
|
|
install(FILES "${CMAKE_SOURCE_DIR}/sunshine.svg"
|
|
DESTINATION "${CMAKE_INSTALL_DATAROOTDIR}/icons/hicolor/scalable/apps"
|
|
RENAME "${PROJECT_FQDN}.svg")
|
|
endif()
|
|
|
|
# tray icon
|
|
if(${SUNSHINE_TRAY} STREQUAL 1)
|
|
install(FILES "${CMAKE_SOURCE_DIR}/sunshine.svg"
|
|
DESTINATION "${CMAKE_INSTALL_DATAROOTDIR}/icons/hicolor/scalable/status"
|
|
RENAME "sunshine-tray.svg")
|
|
install(FILES "${SUNSHINE_SOURCE_ASSETS_DIR}/common/assets/web/public/images/sunshine-playing.svg"
|
|
DESTINATION "${CMAKE_INSTALL_DATAROOTDIR}/icons/hicolor/scalable/status")
|
|
install(FILES "${SUNSHINE_SOURCE_ASSETS_DIR}/common/assets/web/public/images/sunshine-pausing.svg"
|
|
DESTINATION "${CMAKE_INSTALL_DATAROOTDIR}/icons/hicolor/scalable/status")
|
|
install(FILES "${SUNSHINE_SOURCE_ASSETS_DIR}/common/assets/web/public/images/sunshine-locked.svg"
|
|
DESTINATION "${CMAKE_INSTALL_DATAROOTDIR}/icons/hicolor/scalable/status")
|
|
|
|
set(CPACK_DEBIAN_PACKAGE_DEPENDS "\
|
|
${CPACK_DEBIAN_PACKAGE_DEPENDS}, \
|
|
libayatana-appindicator3-1, \
|
|
libnotify4")
|
|
set(CPACK_RPM_PACKAGE_REQUIRES "\
|
|
${CPACK_RPM_PACKAGE_REQUIRES}, \
|
|
libappindicator-gtk3 >= 12.10.0")
|
|
endif()
|
|
|
|
# desktop file
|
|
# todo - validate desktop files with `desktop-file-validate`
|
|
if(NOT ${SUNSHINE_BUILD_FLATPAK})
|
|
install(FILES "${CMAKE_CURRENT_BINARY_DIR}/sunshine.desktop"
|
|
DESTINATION "${CMAKE_INSTALL_DATAROOTDIR}/applications")
|
|
else()
|
|
install(FILES "${CMAKE_CURRENT_BINARY_DIR}/sunshine.desktop"
|
|
DESTINATION "${CMAKE_INSTALL_DATAROOTDIR}/applications"
|
|
RENAME "${PROJECT_FQDN}.desktop")
|
|
install(FILES "${CMAKE_CURRENT_BINARY_DIR}/sunshine_kms.desktop"
|
|
DESTINATION "${CMAKE_INSTALL_DATAROOTDIR}/applications"
|
|
RENAME "${PROJECT_FQDN}_kms.desktop")
|
|
endif()
|
|
if(${SUNSHINE_BUILD_FLATPAK})
|
|
install(FILES "${CMAKE_CURRENT_BINARY_DIR}/sunshine_terminal.desktop"
|
|
DESTINATION "${CMAKE_INSTALL_DATAROOTDIR}/applications"
|
|
RENAME "${PROJECT_FQDN}_terminal.desktop")
|
|
elseif(NOT ${SUNSHINE_BUILD_APPIMAGE})
|
|
install(FILES "${CMAKE_CURRENT_BINARY_DIR}/sunshine_terminal.desktop"
|
|
DESTINATION "${CMAKE_INSTALL_DATAROOTDIR}/applications")
|
|
endif()
|
|
|
|
# metadata file
|
|
# todo - validate file with `appstream-util validate-relax`
|
|
if(NOT ${SUNSHINE_BUILD_FLATPAK})
|
|
install(FILES "${CMAKE_CURRENT_BINARY_DIR}/sunshine.appdata.xml"
|
|
DESTINATION "${CMAKE_INSTALL_DATAROOTDIR}/metainfo")
|
|
else()
|
|
install(FILES "${CMAKE_CURRENT_BINARY_DIR}/${PROJECT_FQDN}.metainfo.xml"
|
|
DESTINATION "${CMAKE_INSTALL_DATAROOTDIR}/metainfo")
|
|
endif()
|