aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/stgit.rb
blob: 2577c360d57c241db821139ccf98ae8b4fd4b062 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
require 'formula'

class Stgit <Formula
  url 'http://download.gna.org/stgit/stgit-0.15.tar.gz'
  homepage 'http://www.procode.org/stgit'
  md5 'a4721b2a5f529cf5450109f9fcb4db19'

  def install
    system "make", "prefix=#{prefix}", "all"
    system "make", "prefix=#{prefix}", "install"
  end
end