mirror of
https://github.com/wavetermdev/homebrew-cask.git
synced 2026-08-05 13:43:24 -07:00
24 lines
613 B
Ruby
24 lines
613 B
Ruby
cask "textadept" do
|
|
version "12.2"
|
|
sha256 "67b7c0f811c3190a93a0bd468a864168bfac0b09afb07c8daab306b8123dd8a6"
|
|
|
|
url "https://github.com/orbitalquark/textadept/releases/download/textadept_#{version}/textadept_#{version}.macOS.zip",
|
|
verified: "github.com/orbitalquark/textadept/"
|
|
name "Textadept"
|
|
desc "Text editor"
|
|
homepage "https://orbitalquark.github.io/textadept/"
|
|
|
|
livecheck do
|
|
url :url
|
|
regex(/^textadept[._-]v?(\d+(?:\.\d+)+)$/i)
|
|
end
|
|
|
|
app "Textadept.app"
|
|
binary "ta"
|
|
|
|
zap trash: [
|
|
"~/.textadept",
|
|
"~/Library/Saved Application State/com.textadept.savedState",
|
|
]
|
|
end
|