-
-
Notifications
You must be signed in to change notification settings - Fork 1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #73 from SunshineStream/nightly
v0.13.0
- Loading branch information
Showing
43 changed files
with
2,314 additions
and
97 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
version: 2 | ||
updates: | ||
- package-ecosystem: "github-actions" | ||
directory: "/" | ||
schedule: | ||
interval: "daily" | ||
target-branch: "nightly" | ||
open-pull-requests-limit: 20 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
name: clang-format-lint | ||
|
||
on: | ||
pull_request: | ||
branches: [master, nightly] | ||
types: [opened, synchronize, edited, reopened] | ||
|
||
jobs: | ||
lint: | ||
name: Clang Format Lint | ||
runs-on: ubuntu-latest | ||
strategy: | ||
fail-fast: false # false to test all, true to fail entire job if any fail | ||
matrix: | ||
inplace: [ true, false ] # removed ubuntu_18_04 for now | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
|
||
- name: Clang format lint | ||
uses: DoozyX/[email protected] | ||
with: | ||
source: './sunshine' | ||
extensions: 'cpp,h,m,mm' | ||
clangFormatVersion: 13 | ||
style: file | ||
inplace: ${{ matrix.inplace }} | ||
|
||
- name: Upload Artifacts | ||
if: ${{ matrix.inplace == true }} | ||
uses: actions/upload-artifact@v2 | ||
with: | ||
name: sunshine | ||
path: sunshine/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
# -*- 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 | ||
|
||
PortSystem 1.0 | ||
PortGroup cmake 1.1 | ||
PortGroup github 1.0 | ||
PortGroup boost 1.0 | ||
|
||
github.setup abusse sunshine macos-dev | ||
version 20220224 | ||
|
||
categories multimedia | ||
platforms darwin | ||
license GPL-2 | ||
maintainers {outlook.com:anselm.busse} | ||
|
||
fetch.type git | ||
post-fetch { | ||
system -W ${worksrcpath} "${git.cmd} submodule update --init --recursive" | ||
} | ||
|
||
description Sunshine is a Gamestream host for Moonlight | ||
long_description Sunshine is a Gamestream host for Moonlight | ||
|
||
homepage https://github.com/SunshineStream/Sunshine | ||
|
||
depends_lib port:avahi port:ffmpeg port:libopus | ||
|
||
|
||
boost.version 1.76 | ||
|
||
configure.args -DBOOST_ROOT=[boost::install_area] \ | ||
-DSUNSHINE_ASSETS_DIR=${prefix}/etc/sunshine | ||
|
||
cmake.out_of_source yes | ||
|
||
destroot { | ||
xinstall -d -m 755 ${destroot}${prefix}/etc/${name} | ||
xinstall ${worksrcpath}/assets/apps_mac.json ${destroot}${prefix}/etc/${name} | ||
xinstall ${worksrcpath}/assets/box.png ${destroot}${prefix}/etc/${name} | ||
xinstall ${worksrcpath}/assets/sunshine.conf ${destroot}${prefix}/etc/${name} | ||
|
||
xinstall -d -m 755 ${destroot}${prefix}/etc/${name}/web | ||
xinstall {*}[glob ${worksrcpath}/assets/web/*.html] ${destroot}${prefix}/etc/${name}/web | ||
xinstall -d -m 755 ${destroot}${prefix}/etc/${name}/web/third_party | ||
xinstall {*}[glob ${worksrcpath}/assets/web/third_party/*] ${destroot}${prefix}/etc/${name}/web/third_party | ||
|
||
xinstall ${workpath}/build/${name} ${destroot}${prefix}/bin | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"env":{ | ||
"PATH":"$(PATH):$(HOME)/.local/bin" | ||
}, | ||
"apps":[ ] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | ||
<plist version="1.0"> | ||
<dict> | ||
<key>CFBundleIdentifier</key> | ||
<string>com.github.sunshinestream.sunshine</string> | ||
<key>CFBundleName</key> | ||
<string>Sunshine</string> | ||
<key>NSMicrophoneUsageDescription</key> | ||
<string>This app requires access to your microphone to stream audio.</string> | ||
</dict> | ||
</plist> |
Oops, something went wrong.