mirror of
https://github.com/wavetermdev/homebrew-cask.git
synced 2026-08-05 13:43:24 -07:00
The migration of `orka.rb` and then `o*.rb` has worked well without complaint so: let's move everything else, too.
23 lines
507 B
Ruby
23 lines
507 B
Ruby
cask "evkey" do
|
|
version "3.3.8"
|
|
sha256 :no_check
|
|
|
|
url "https://github.com/lamquangminh/EVKey/releases/download/Release/EVKeyMac.zip",
|
|
verified: "github.com/lamquangminh/EVKey/"
|
|
name "EVKey"
|
|
desc "Vietnamese keyboard"
|
|
homepage "https://evkeyvn.com/"
|
|
|
|
livecheck do
|
|
url :homepage
|
|
regex(/EVKeyMac\.zip.*?v?(\d+(?:\.\d+)+)/im)
|
|
end
|
|
|
|
app "EVKey.app"
|
|
|
|
zap trash: [
|
|
"~/Library/Containers/com.lamquangminh.evkey",
|
|
"~/Library/Containers/com.lamquangminh.evkeyhelper",
|
|
]
|
|
end
|