blob: 1121bb0d8e8e3a1795a891f3f23c869e98472c26 (
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'
sha1 '10b62d080a4c34c2dd11de4d1c800f62b9e5018c'
def install
system "make", "prefix=#{prefix}", "all"
system "make", "prefix=#{prefix}", "install"
end
end
|