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

class Cabextract < Formula
  url 'http://www.cabextract.org.uk/cabextract-1.3.tar.gz'
  homepage 'http://www.cabextract.org.uk/'
  md5 'cb9a4a38470d2a71a0275968e7eb64d3'

  def install
    system "./configure", "--disable-debug", "--disable-dependency-tracking",
                          "--prefix=#{prefix}", "--mandir=#{man}"
    system "make install"
  end
end