cask 'copyq' do version '3.9.2' sha256 '191d2b83e5c61f36044808fd9596d06e3a99fa06088c4fa8a3a126f08b4a86f2' # github.com/hluk/CopyQ was verified as official when first introduced to the cask url "https://github.com/hluk/CopyQ/releases/download/v#{version}/CopyQ.dmg" appcast 'https://github.com/hluk/CopyQ/releases.atom' name 'CopyQ' homepage 'https://hluk.github.io/CopyQ/' app 'CopyQ.app' # shim script (https://github.com/Homebrew/homebrew-cask/issues/18809) shimscript = "#{staged_path}/copyq.wrapper.sh" binary shimscript, target: 'copyq' preflight do IO.write shimscript, <<~EOS #!/bin/bash exec '#{appdir}/CopyQ.app/Contents/MacOS/copyq' "$@" EOS end end