mirror of
https://github.com/wavetermdev/homebrew-cask.git
synced 2026-08-05 13:43:24 -07:00
25 lines
578 B
Ruby
25 lines
578 B
Ruby
cask "topcat" do
|
|
version "4.9"
|
|
sha256 :no_check
|
|
|
|
url "https://www.star.bristol.ac.uk/mbt/topcat/topcat-full.dmg"
|
|
name "TOPCAT"
|
|
desc "Interactive graphical viewer and editor for tabular data"
|
|
homepage "https://www.star.bristol.ac.uk/mbt/topcat/"
|
|
|
|
livecheck do
|
|
url :homepage
|
|
regex(/Version\s*(\d+(?:\.\d+)*(?:-\d+)?)\s*released/i)
|
|
end
|
|
|
|
app "TOPCAT.app"
|
|
binary "#{appdir}/TOPCAT.app/Contents/Resources/bin/topcat"
|
|
binary "#{appdir}/TOPCAT.app/Contents/Resources/bin/stilts"
|
|
|
|
# No zap stanza required
|
|
|
|
caveats do
|
|
depends_on_java "8+"
|
|
end
|
|
end
|