blob: a10bdeefbe33f80de4a00b7737ad93b23b8f6377 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
require 'formula'
class Ringojs < Formula
homepage 'http://ringojs.org'
url 'http://ringojs.org/downloads/ringojs-0.9.tar.gz'
sha1 '1b0b7efcad323d5dd7ce3b1dbdfc079914e8713a'
def install
rm Dir['bin/*.cmd']
libexec.install Dir['*']
bin.write_exec_script Dir["#{libexec}/bin/*"]
end
end
|