2e00350f79
Closes Homebrew/homebrew#24875. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
15 lines
343 B
Ruby
15 lines
343 B
Ruby
require 'formula'
|
|
|
|
class Ringojs < Formula
|
|
homepage 'http://ringojs.org'
|
|
url 'http://ringojs.org/downloads/ringojs-0.10.tar.gz'
|
|
sha1 'e8ca13e23ab757f1e52132a1357a59b107318e91'
|
|
|
|
skip_clean 'libexec/packages'
|
|
|
|
def install
|
|
rm Dir['bin/*.cmd']
|
|
libexec.install Dir['*']
|
|
bin.write_exec_script Dir["#{libexec}/bin/*"]
|
|
end
|
|
end
|