Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

migrate soundid reference #11

Merged
merged 6 commits into from
Aug 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@ jobs:
~/Library/Caches/Homebrew/Cask/ndi-tools--*
~/Library/Caches/Homebrew/downloads/*--bpm.zip*
~/Library/Caches/Homebrew/downloads/*--NDIToolsInstaller.pkg*
~/Library/Caches/Homebrew/downloads/*--SoundID\ Reference.dmg*
key: brew-${{ runner.os }}-${{ runner.arch }}-${{ hashFiles('.github/clear_github_actions_cache') }}-${{ hashFiles( env.BREWFILE_PATH, '**/Brewfile.lock.json') }}-${{ hashFiles('Casks/**.rb') }}
restore-keys: |
brew-${{ runner.os }}-${{ runner.arch }}-${{ hashFiles('.github/clear_github_actions_cache') }}-${{ hashFiles( env.BREWFILE_PATH, '**/Brewfile.lock.json') }}-${{ hashFiles('Casks/**.rb') }}
Expand Down
21 changes: 21 additions & 0 deletions Casks/bpm.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,24 @@
#
# Cask:: bpm
# Recipe:: default
# Authors:: James Cuzella
#
# Copyright:: © 🄯 2022-2024, James Cuzella
# License:: GPLv3.0
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.

cask "bpm" do
version "1.6,4bbef8bb49039e3b154109265710a2f150b8180b"
sha256 "3cba546138c48b4c33d18a3f3bcc6d8b179b1ad676ea0431227cbefdddb9f1d9"
Expand Down
21 changes: 21 additions & 0 deletions Casks/ndi-tools.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,24 @@
#
# Cask:: ndi-tools
# Recipe:: default
# Authors:: James Cuzella
#
# Copyright:: © 🄯 2022-2024, James Cuzella
# License:: GPLv3.0
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.

cask "ndi-tools" do
version :latest
sha256 :no_check
Expand Down
40 changes: 40 additions & 0 deletions Casks/soundid-reference.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
#
# Cask:: soundid-reference
# Recipe:: default
# Authors:: James Cuzella
#
# Copyright:: © 🄯 2022-2024, James Cuzella
# License:: GPLv3.0
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.

cask "soundid-reference" do
version :latest
sha256 :no_check

# url "https://www.sonarworks.com/soundid-reference/download"
url "https://updates.sonarworks.com/InstallerDownload.ashx?bootstrap=SoundIDReference&platform=Mac64"
name "SoundID Reference"
desc "Next-gen version of SoundID Reference calibrates speakers and studio headphones"
homepage "https://www.sonarworks.com/soundid-reference"

conflicts_with cask: "sonarworks-reference4"

installer manual: "SoundID Reference.app"

uninstall quit: "com.sonarworks.soundid.reference.measure|" \
"com.sonarworks.soundid.reference.systemwide|" \
"com.sonarworks.soundid.reference.installer.boot",
pkgutil: "com.sonarworks.soundid.*"
end
Loading