mirror of
https://github.com/donl/homebrew-cask-versions.git
synced 2026-07-17 14:26:45 -06:00
Keeping the `link` stanza in the DSL is a mistake: it will be confusing when combined with the ability to install by copying. This PR retires `link` completely, and adds a generic artifact stanza called `artifact`. (`link` is removed from the docs, but will still work for compatibility during transition.) This only affects one current Cask (dwarf-fortress.rb), and that Cask may be changed to use `suite` in the future.
8 lines
300 B
Ruby
8 lines
300 B
Ruby
class StuffitContainer < TestCask
|
|
url TestHelper.local_binary_url('sheldonmac.sit')
|
|
homepage 'http://www.tobias-jung.de/seekingprofont/'
|
|
version '1.2.3'
|
|
sha256 '892b6d49a98c546381d41dec9b0bbc04267ac008d72b99755968d357099993b7'
|
|
depends_on :formula => 'unar'
|
|
artifact 'sheldonmac/v1.0'
|
|
end
|