2010-07-21 04:43:41 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Ringojs < Formula
|
2011-08-09 05:47:54 +00:00
|
|
|
url 'https://github.com/downloads/ringo/ringojs/ringojs-0.8.tar.gz'
|
2010-07-21 04:43:41 +00:00
|
|
|
homepage 'http://ringojs.org'
|
2012-09-03 18:33:56 +00:00
|
|
|
sha1 '28fd76fce28b41e2abcbe27a8b1731744d340e94'
|
2010-07-21 04:43:41 +00:00
|
|
|
|
|
|
|
def install
|
|
|
|
rm Dir['bin/*.cmd']
|
|
|
|
libexec.install Dir['*']
|
2012-08-07 18:20:52 +00:00
|
|
|
bin.write_exec_script Dir["#{libexec}/bin/*"]
|
2010-07-21 04:43:41 +00:00
|
|
|
end
|
|
|
|
end
|