mirror of
https://github.com/wavetermdev/homebrew-cask.git
synced 2026-08-05 13:43:24 -07:00
31 lines
710 B
Ruby
31 lines
710 B
Ruby
cask "clibor" do
|
||
version "1.3"
|
||
sha256 :no_check
|
||
|
||
language "en", default: true do
|
||
url "https://chigusa-web.com/clibor-for-mac-en/dl/clibor-for-mac/"
|
||
end
|
||
language "ja" do
|
||
url "https://chigusa-web.com/clibor-for-mac/dl/clibor-for-mac/"
|
||
end
|
||
|
||
name "Clibor for Mac"
|
||
desc "Clipboard manager"
|
||
homepage "https://chigusa-web.com/clibor-for-mac-en/"
|
||
|
||
livecheck do
|
||
url "https://chigusa-web.com/clibor-for-mac-en/download/"
|
||
regex(/Clibor\.dmg\s–\sv?(\d+(?:\.\d+)+)/i)
|
||
end
|
||
|
||
auto_updates true
|
||
depends_on macos: ">= :monterey"
|
||
|
||
app "Clibor.app"
|
||
|
||
zap trash: [
|
||
"~/Library/Application Scripts/com.chigusa-web.Clibor",
|
||
"~/Library/Containers/com.chigusa-web.Clibor",
|
||
]
|
||
end
|