homebrew-cask/Casks/copyq.rb

23 lines
709 B
Ruby

cask 'copyq' do
version '3.7.2'
sha256 '7285b597062c9f93e854c1a6c32299cdcb64146c36fda3068747efca7eda2a5f'
# 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