12 lines
314 B
Ruby
12 lines
314 B
Ruby
require 'formula'
|
|
|
|
class Topgit < Formula
|
|
desc "Git patch queue manager"
|
|
homepage 'https://github.com/greenrd/topgit'
|
|
url 'https://github.com/greenrd/topgit/archive/topgit-0.9.tar.gz'
|
|
sha1 '619572db467259f9b56474b542f428dc52e0fbc9'
|
|
|
|
def install
|
|
system "make", "install", "prefix=#{prefix}"
|
|
end
|
|
end
|