blob: 0844e749d6eb5ea1b8787ff5d71e6ae973c8ac99 (
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'
  md5 '1f640741ff0cf94ea84c607fac8758d6'
  head 'https://github.com/magit/magit.git'
  def install
    system "make install DESTDIR=#{prefix} PREFIX="
  end
end
  |