homebrew-core/Formula/ringojs.rb

16 lines
343 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
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['*']
2012-08-07 18:20:52 +00:00
bin.write_exec_script Dir["#{libexec}/bin/*"]
end
end