blob: b778cd202604578770445f4b4e0d32c728aee5cb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
require 'formula'
class Magit < Formula
homepage 'https://github.com/magit/magit'
url 'https://github.com/magit/magit/archive/1.2.0.tar.gz'
sha1 '8ad7947a29d4d852f35f94a6821d038fe43a7c31'
head 'https://github.com/magit/magit.git'
def install
system "make", "install", "DESTDIR=#{prefix}", "PREFIX="
end
end
|