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
|
|
|
url 'https://github.com/downloads/magit/magit/magit-1.0.0.tar.gz'
|
|
|
|
homepage 'https://github.com/magit/magit'
|
2012-09-03 18:33:56 +00:00
|
|
|
sha1 '58773e84870d9d8d1138619e1f3928d1696aa168'
|
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
|
2012-05-15 18:31:21 +00:00
|
|
|
system "make", "install", "DESTDIR=#{prefix}", "PREFIX="
|
2010-07-02 04:40:11 +00:00
|
|
|
end
|
|
|
|
end
|