Files
2023-10-22 09:18:23 -04:00

27 lines
756 B
Ruby

cask "gqrx" do
version "2.17.3"
sha256 "126c981aa1fa63df65f4c8545a4a2480b5da3305e06983c2bacf6e630a7732a3"
url "https://github.com/gqrx-sdr/gqrx/releases/download/v#{version.major_minor_patch}/Gqrx-#{version}.dmg",
verified: "github.com/gqrx-sdr/gqrx/"
name "Gqrx"
desc "Software-defined radio receiver powered by GNU Radio and Qt"
homepage "https://gqrx.dk/"
depends_on macos: ">= :catalina"
app "Gqrx.app"
# shim script (https://github.com/Homebrew/homebrew-cask/issues/18809)
shimscript = "#{staged_path}/gqrx.wrapper.sh"
binary shimscript, target: "gqrx"
preflight do
File.write shimscript, <<~EOS
#!/bin/sh
'#{appdir}/Gqrx.app/Contents/MacOS/gqrx' "$@"
EOS
end
zap trash: "~/.config/gqrx"
end