mirror of
https://github.com/wavetermdev/homebrew-cask.git
synced 2026-08-05 13:43:24 -07:00
22 lines
645 B
Ruby
22 lines
645 B
Ruby
cask "metashape" do
|
|
version "2.0.3"
|
|
sha256 "90dc0315a90b82e9501cd008796aec1f5d5b8f26cb60a5e84440d1fe6c342817"
|
|
|
|
url "http://download.agisoft.com/metashape_#{version.dots_to_underscores}.dmg"
|
|
name "Agisoft Metashape Standard Edition"
|
|
desc "Process digital images and generate 3D spatial data"
|
|
homepage "https://www.agisoft.com/"
|
|
|
|
livecheck do
|
|
url "https://www.agisoft.com/downloads/installer/"
|
|
regex(/Metashape\s*(\d+(?:\.\d+)+)/i)
|
|
end
|
|
|
|
app "Metashape.app"
|
|
|
|
zap trash: [
|
|
"~/Library/Preferences/com.agisoft.Metashape.plist",
|
|
"~/Library/Saved Application State/com.agisoft.metashape.standard.savedState",
|
|
]
|
|
end
|