mirror of
https://github.com/donl/homebrew-cask-versions.git
synced 2026-06-30 06:12:15 -06:00
Notes: - The official website is hosted on GitHub pages. HTTPS connections do not validate on the CNAME domain, so raw.githubusercontent.com links are used for secure connections. - The zip download currently has no version info included. This will lead to downloads breaking when a new version is released. - No formal license document is provided on the homepage, but the download modal has this to say about payment: > No, really, Tiny is FREE. Instead of asking you to pay for my coffee > while making this app, I ask you to donate to Wikipedia instead. Or > help fund healthcare for patients around the world via Watsi. Or > simply make someone's day. As The Doctor said, Be Magnificent!
15 lines
394 B
Ruby
15 lines
394 B
Ruby
cask :v1 => 'tiny' do
|
|
version :latest
|
|
sha256 :no_check
|
|
|
|
url 'http://www.delightfuldev.com/tiny/Tiny.zip'
|
|
appcast 'http://www.delightfuldev.com/tiny/update.xml',
|
|
:sha256 => '3c630fc76fda5c9e1704b1d1a84c43a0a6c96905acb70a4e1c6b71fef9806165'
|
|
name 'Tiny'
|
|
homepage 'http://www.delightfuldev.com/tiny/'
|
|
license :gratis
|
|
|
|
app 'Tiny.app'
|
|
|
|
depends_on :macos => '>= 10.10'
|
|
end
|