44 lines
1.3 KiB
Ruby
44 lines
1.3 KiB
Ruby
cask "lbry" do
|
|
version "0.53.9"
|
|
sha256 "3769997e7cdb6e563a505c5f8375325ef26fc74318aea0defde711fc5fcfee5e"
|
|
|
|
url "https://github.com/lbryio/lbry-desktop/releases/download/v#{version}/LBRY_#{version}.dmg",
|
|
verified: "github.com/lbryio/lbry-desktop/"
|
|
name "LBRY Desktop"
|
|
desc "Official client for LBRY, a decentralised file-sharing and payment network"
|
|
homepage "https://lbry.com/"
|
|
|
|
livecheck do
|
|
url :url
|
|
regex(/v?(\d+(?:\.\d+)+)/i)
|
|
strategy :github_latest
|
|
end
|
|
|
|
depends_on macos: ">= :mojave"
|
|
|
|
app "LBRY.app"
|
|
# shim scripts (https://github.com/Homebrew/homebrew-cask/issues/18809)
|
|
shim_lbrynet = "#{staged_path}/lbrynet.wrapper.sh"
|
|
shim_lbryfirst = "#{staged_path}/libry-first.wrapper.sh"
|
|
binary shim_lbrynet, target: "lbrynet"
|
|
binary shim_lbryfirst, target: "lbry-first"
|
|
|
|
preflight do
|
|
File.write shim_lbrynet, <<~EOS
|
|
#!/bin/sh
|
|
exec '#{appdir}/LBRY.app/Contents/Resources/static/daemon/lbrynet' "$@"
|
|
EOS
|
|
|
|
File.write shim_lbryfirst, <<~EOS
|
|
#!/bin/sh
|
|
exec '#{appdir}/LBRY.app/Contents/Resources/static/lbry-first/lbry-first' "$@"
|
|
EOS
|
|
end
|
|
|
|
zap trash: [
|
|
"~/Library/Application Support/lbry",
|
|
"~/Library/Preferences/io.lbry.LBRY.plist",
|
|
"~/Library/Saved Application State/io.lbry.LBRY.savedState",
|
|
]
|
|
end
|