blob: 38cd393229ca18ba9f55655b84bde7ec8c925821 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
  | 
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
  |