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

class Shtool < Formula
  url 'http://ftpmirror.gnu.org/shtool/shtool-2.0.8.tar.gz'
  mirror 'http://ftp.gnu.org/gnu/shtool/shtool-2.0.8.tar.gz'
  homepage 'http://www.gnu.org/software/shtool/'
  md5 'c5f7c6836882d48bc79049846a5f9c5b'

  def install
    system "./configure", "--prefix=#{prefix}"
    system "make install"
  end
end