mirror of
https://github.com/LizardByte/Sunshine.git
synced 2024-11-16 23:10:13 +00:00
c63678ddcd
Some checks failed
CI / GitHub Env Debug (push) Has been cancelled
CI / Setup Release (push) Has been cancelled
CI / Setup Flatpak Matrix (push) Has been cancelled
CI Docker / Check Dockerfiles (push) Has been cancelled
CodeQL / Get language matrix (push) Has been cancelled
Build GH-Pages / update_pages (push) Has been cancelled
CI / Linux Flatpak (push) Has been cancelled
CI / Linux ${{ matrix.type }} (--appimage-build, 22.04, AppImage) (push) Has been cancelled
CI / Homebrew (${{ matrix.os_name }}-${{ matrix.os_version }}${{ matrix.release == true && ' (Release)' || '' }}) (macos, 12) (push) Has been cancelled
CI / Homebrew (${{ matrix.os_name }}-${{ matrix.os_version }}${{ matrix.release == true && ' (Release)' || '' }}) (macos, 13) (push) Has been cancelled
CI / Homebrew (${{ matrix.os_name }}-${{ matrix.os_version }}${{ matrix.release == true && ' (Release)' || '' }}) (macos, 14) (push) Has been cancelled
CI / Homebrew (${{ matrix.os_name }}-${{ matrix.os_version }}${{ matrix.release == true && ' (Release)' || '' }}) (ubuntu, latest) (push) Has been cancelled
CI / Homebrew (${{ matrix.os_name }}-${{ matrix.os_version }}${{ matrix.release == true && ' (Release)' || '' }}) (ubuntu, latest, true) (push) Has been cancelled
CI / Macports (macOS-${{ matrix.os_version }}) (12, true) (push) Has been cancelled
CI / Macports (macOS-${{ matrix.os_version }}) (13) (push) Has been cancelled
CI / Macports (macOS-${{ matrix.os_version }}) (14) (push) Has been cancelled
CI / Windows (push) Has been cancelled
CI Docker / Setup Release (push) Has been cancelled
CI Docker / Docker${{ matrix.tag }} (push) Has been cancelled
CodeQL / Analyze (${{ matrix.name }}) (push) Has been cancelled
78 lines
3.1 KiB
Tcl
78 lines
3.1 KiB
Tcl
# -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4
|
|
|
|
# initial PR into macports: https://github.com/macports/macports-ports/pull/15143
|
|
|
|
PortSystem 1.0
|
|
PortGroup cmake 1.1
|
|
PortGroup github 1.0
|
|
|
|
name @PROJECT_NAME@
|
|
version @PROJECT_VERSION@
|
|
revision 0
|
|
categories multimedia emulators games
|
|
platforms darwin
|
|
license GPL-3
|
|
maintainers @LizardByte
|
|
description @PROJECT_DESCRIPTION@
|
|
|
|
# long_description will not be split into multiple lines as it's configured by CMakeLists
|
|
long_description @PROJECT_LONG_DESCRIPTION@
|
|
homepage @PROJECT_HOMEPAGE_URL@
|
|
master_sites https://github.com/lizardbyte/sunshine/releases
|
|
|
|
compiler.cxx_standard 2017
|
|
fetch.type git
|
|
|
|
git.url @GITHUB_CLONE_URL@
|
|
git.branch @GITHUB_COMMIT@
|
|
|
|
post-fetch {
|
|
system -W ${worksrcpath} "${git.cmd} submodule update --init --recursive"
|
|
}
|
|
|
|
# https://guide.macports.org/chunked/reference.dependencies.html
|
|
depends_build-append port:doxygen \
|
|
port:graphviz \
|
|
port:npm9 \
|
|
port:pkgconfig
|
|
|
|
depends_lib port:curl \
|
|
port:libopus \
|
|
port:miniupnpc
|
|
|
|
configure.args -DBOOST_USE_STATIC=ON \
|
|
-DBUILD_WERROR=ON \
|
|
-DCMAKE_INSTALL_PREFIX=${prefix} \
|
|
-DSUNSHINE_ASSETS_DIR=etc/sunshine/assets \
|
|
-DSUNSHINE_PUBLISHER_NAME='LizardByte' \
|
|
-DSUNSHINE_PUBLISHER_WEBSITE='https://app.lizardbyte.dev' \
|
|
-DSUNSHINE_PUBLISHER_ISSUE_URL='https://app.lizardbyte.dev/support'
|
|
|
|
configure.env-append BRANCH=@GITHUB_BRANCH@
|
|
configure.env-append BUILD_VERSION=@BUILD_VERSION@
|
|
configure.env-append COMMIT=@GITHUB_COMMIT@
|
|
|
|
startupitem.create yes
|
|
startupitem.executable "${prefix}/bin/sunshine"
|
|
startupitem.location LaunchDaemons
|
|
startupitem.name ${name}
|
|
startupitem.netchange yes
|
|
|
|
platform darwin {
|
|
if { ${os.major} < 20 } {
|
|
# See: https://github.com/LizardByte/Sunshine/discussions/117#discussioncomment-2513494
|
|
notes-append "Port is limited to software encoding, when used with macOS releases prior to Big Sur."
|
|
}
|
|
}
|
|
|
|
notes-append "Run @PROJECT_NAME@ by executing 'sunshine <path to user config>', e.g. 'sunshine ~/sunshine.conf' "
|
|
notes-append "The config file will be created if it doesn't exist."
|
|
notes-append "It is recommended to set a location for the apps file in the config."
|
|
notes-append "See our documentation at 'https://docs.lizardbyte.dev/projects/sunshine/en/v@PROJECT_VERSION@/' for further info."
|
|
|
|
test.run yes
|
|
test.dir ${build.dir}/tests
|
|
test.target ""
|
|
test.cmd ./test_sunshine
|
|
test.args --gtest_color=yes --gtest_filter=-*HIDTest.*:-*DeathTest.*
|