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

class Magit <Formula
  url 'http://github.com/downloads/philjackson/magit/magit-0.8.2.tar.gz'
  homepage 'http://github.com/philjackson/magit'
  md5 'fe7e1a1085190ede6bed49e406fe0ce9'
  head 'git://github.com/philjackson/magit.git'

  def install
    system "./autogen.sh" if File.exist? "autogen.sh"
    system "./configure", "--prefix=#{prefix}"
    system "make install"
  end
end