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

class Magit < Formula
  url 'https://github.com/downloads/philjackson/magit/magit-0.8.2.tar.gz'
  homepage 'https://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