blob: 306136278f8146282e4c35e7ed4589cc65e06bbd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
require 'formula'
class Rhino < Formula
homepage 'http://www.mozilla.org/rhino/'
url 'https://github.com/downloads/mozilla/rhino/rhino1_7R4.zip'
sha1 '483e097cb575c724c745edd80c9512f073bd510a'
version '1.7R4'
def install
libexec.install 'js.jar'
bin.write_jar_script libexec/'js.jar', 'rhino'
end
end
|