blob: 8fb299ee171e5e77dfed55b3d6e53d2219d78f26 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
 | require 'formula'
class Jsawk <Formula
  head 'git://github.com/micha/jsawk.git'
  homepage 'http://github.com/micha/jsawk'
  
  # Is there a built-in JavaScript interpreter on OS X 10.6 we can use instead?
  depends_on 'spidermonkey'
  def install
    system "mv README.markdown README"
    bin.install "jsawk"
  end
end
 |