aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/jsawk.rb
blob: 0d90a71f7ace1772eacd466ddb3f7d52525f92ec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
require 'formula'

class Jsawk < Formula
  head 'https://github.com/micha/jsawk.git'
  homepage 'https://github.com/micha/jsawk'

  depends_on 'spidermonkey'

  def install
    system "mv README.markdown README"
    bin.install "jsawk"
  end
end