37 lines
1.4 KiB
Ruby
37 lines
1.4 KiB
Ruby
class SwitchaudioOsx < Formula
|
|
desc "Change macOS audio source from the command-line"
|
|
homepage "https://github.com/deweller/switchaudio-osx/"
|
|
url "https://github.com/deweller/switchaudio-osx/archive/1.0.0.tar.gz"
|
|
sha256 "c00389837ffd02b1bb672624fec7b75434e2d72d55574afd7183758b419ed6a3"
|
|
head "https://github.com/deweller/switchaudio-osx.git"
|
|
|
|
bottle do
|
|
cellar :any_skip_relocation
|
|
rebuild 2
|
|
sha256 "85d0fe91c72d1a61e331e475af4e6ded9d0ca3581612c1934835bc44653fe407" => :mojave
|
|
sha256 "26af506ea42b83ae8ccde71ed8b7666ccf3e3a349b2dd8958af7025854ffefd3" => :high_sierra
|
|
sha256 "89ed040cc50c7b7ad88a903da5351cfa0027a4daf22cf73f2713e0887847c5d1" => :sierra
|
|
sha256 "515b762164648d739ae36f8c5013d250d84af1264bf3ee366ed35adae2f44208" => :el_capitan
|
|
end
|
|
|
|
depends_on :xcode => :build
|
|
depends_on :macos => :lion
|
|
|
|
def install
|
|
xcodebuild "-project", "AudioSwitcher.xcodeproj",
|
|
"-target", "SwitchAudioSource",
|
|
"SYMROOT=build",
|
|
"-verbose",
|
|
# Force 64-bit for Mojave
|
|
"-arch", "x86_64",
|
|
# Default target is 10.5, which fails on Mojave
|
|
"MACOSX_DEPLOYMENT_TARGET=#{MacOS.version}"
|
|
prefix.install Dir["build/Release/*"]
|
|
bin.write_exec_script "#{prefix}/SwitchAudioSource"
|
|
chmod 0755, "#{bin}/SwitchAudioSource"
|
|
end
|
|
|
|
test do
|
|
system "#{bin}/SwitchAudioSource", "-c"
|
|
end
|
|
end
|