mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-08 23:18:10 -05:00
15 lines
392 B
Ruby
15 lines
392 B
Ruby
require 'package'
|
|
Package.load_package("#{__dir__}/nodebrew.rb")
|
|
|
|
class Node < Package
|
|
description 'As an asynchronous event driven JavaScript runtime, Node is designed to build scalable network applications.'
|
|
homepage 'https://nodejs.org/en/'
|
|
version Nodebrew.version
|
|
license 'Apache-1.1, Apache-2.0, BSD, BSD-2 and MIT'
|
|
compatibility 'all'
|
|
|
|
is_fake
|
|
|
|
depends_on 'nodebrew'
|
|
end
|