homebrew-core/Formula/magit.rb

14 lines
326 B
Ruby
Raw Normal View History

2010-07-02 04:40:11 +00:00
require 'formula'
2011-03-10 05:11:03 +00:00
class Magit < Formula
2011-05-25 21:11:10 +00:00
homepage 'https://github.com/magit/magit'
2013-01-29 05:12:28 +00:00
url 'https://github.com/magit/magit/archive/1.2.0.tar.gz'
sha1 '8ad7947a29d4d852f35f94a6821d038fe43a7c31'
2011-05-27 05:02:55 +00:00
head 'https://github.com/magit/magit.git'
2010-07-02 04:40:11 +00:00
def install
system "make", "install", "DESTDIR=#{prefix}", "PREFIX="
2010-07-02 04:40:11 +00:00
end
end