blob: 4dcc78bb768797bd7c53edd9d9ee8bb70806464d (
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'
sha1 '58773e84870d9d8d1138619e1f3928d1696aa168'
head 'https://github.com/magit/magit.git'
def install
system "make", "install", "DESTDIR=#{prefix}", "PREFIX="
end
end
|