aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/wrangler.rb
blob: 12035a768b3ce65a2f6cb5b19eda9093767f78e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
require 'formula'

class Wrangler < Formula
  homepage 'http://www.cs.kent.ac.uk/projects/forse/'
  url 'https://github.com/RefactoringTools/wrangler/archive/wrangler1.1.01.tar.gz'
  sha1 'fe938912ba3d50796da70572aef3e234c5d8f435'

  depends_on 'erlang'

  def install
    ENV.deparallelize
    system "./configure", "--prefix=#{prefix}"
    system "make"
    system "make install"
  end
end