2010-07-21 04:43:41 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Ringojs < Formula
|
2010-07-21 04:43:41 +00:00
|
|
|
homepage 'http://ringojs.org'
|
2013-12-02 12:36:47 +00:00
|
|
|
url 'http://ringojs.org/downloads/ringojs-0.10.tar.gz'
|
|
|
|
sha1 'e8ca13e23ab757f1e52132a1357a59b107318e91'
|
2010-07-21 04:43:41 +00:00
|
|
|
|
2013-03-01 13:34:12 +00:00
|
|
|
skip_clean 'libexec/packages'
|
|
|
|
|
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
|