homebrew-core/Formula/magit.rb
Koen Van der Auwera 4f3e4c4eef magit 0.8.2
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2010-10-13 06:00:32 -07:00

14 lines
403 B
Ruby

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