29 lines
764 B
Ruby
29 lines
764 B
Ruby
|
|
cask 'ulanzi-deck' do
|
|
version '1.7.0'
|
|
sha256 '12ba697970f4696954c800dea28a5ab6bccbd8b88eb4cdf453bf72ef18cce8b5'
|
|
|
|
# 应用程序的下载 URL
|
|
url 'https://cdn.ulanzistudio.com/UlanziDeck/1.7.0/Mac_Apple_UlanziDeck_V1.7.0_20250208.dmg'
|
|
|
|
# 应用程序的名称
|
|
name 'UlanziDeck'
|
|
|
|
# 应用程序的描述
|
|
desc 'A custom application for macOS'
|
|
|
|
# 应用程序的开发者
|
|
homepage 'https://ulanzistudio.com'
|
|
|
|
# 安装到 Applications 目录
|
|
app 'UlanziDeck.app'
|
|
|
|
# 卸载时需要移除的文件和目录
|
|
zap trash: [
|
|
'~/Library/Preferences/com.ulanzistudio.UlanziDeck.plist',
|
|
'~/Library/Saved\ Application\ State/ulanzi.UlanziDeck.savedState',
|
|
'~/Library/Caches/UlanziDeck',
|
|
'~/Library/Application Support/Ulanzi'
|
|
]
|
|
end
|