blob: 047d510c83d4c93c47ad1828af6b783c5270e39d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
require 'formula'
class Stgit < Formula
homepage 'http://www.procode.org/stgit'
url 'http://download.gna.org/stgit/stgit-0.16.tar.gz'
md5 '73ca6a7469d30d9d69fa561e16abc2a8'
def install
system "make", "prefix=#{prefix}", "all"
system "make", "prefix=#{prefix}", "install"
end
end
|