blob: 1e252a0429e7575f9a7c3dce35be96aeef4d809d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
require 'formula'
class Rhino < Formula
homepage 'http://www.mozilla.org/rhino/'
url 'ftp://ftp.mozilla.org/pub/mozilla.org/js/rhino1_7R3.zip'
md5 '99d94103662a8d0b571e247a77432ac5'
version '1.7R3'
def install
libexec.install 'js.jar'
(bin+'rhino').write <<-EOS.undent
#!/bin/bash
java -jar "#{libexec}/js.jar" "$@"
EOS
end
end
|