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

class Magit < Formula
  url 'https://github.com/downloads/magit/magit/magit-1.0.0.tar.gz'
  homepage 'https://github.com/magit/magit'
  md5 '1f640741ff0cf94ea84c607fac8758d6'
  head 'https://github.com/magit/magit.git'

  def install
    system "make", "install", "DESTDIR=#{prefix}", "PREFIX="
  end
end