mirror of
https://github.com/donl/homebrew-cask-versions.git
synced 2026-07-17 22:06:36 -06:00
`link` stanza has been removed as it does not serve normal usage of node-webkit. node-webkit is a runtime targeted by application developers. Usage of node-webkit usually takes one of two forms: - launching the binary with development code as argument, either by CLI or drag-and-drop. - bundling a copy of the binary with release code, for packaging and distribution. Neither usage is aided by a symlink; a known binary location, which Cask provides, is sufficient. Addendum: `version` value is reused in `url` stanza to facilitate future updates.
9 lines
283 B
Ruby
9 lines
283 B
Ruby
class NodeWebkit < Cask
|
|
version '0.10.0'
|
|
sha256 '37e2000b5bbc9a96c55ab15c86b21aeb38de2aa7d373c04c5f820d5bae07dc54'
|
|
|
|
url "http://dl.node-webkit.org/v#{version}/node-webkit-v#{version}-osx-ia32.zip"
|
|
homepage 'https://github.com/rogerwang/node-webkit'
|
|
|
|
caskroom_only true
|
|
end
|