aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/dar.rb
blob: 17f61f381db7510a8e136e54442b382e2fb4635b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
require 'formula'

class Dar <Formula
  url 'http://downloads.sourceforge.net/project/dar/dar/2.3.10/dar-2.3.10.tar.gz'
  homepage 'http://dar.linux.free.fr/doc/index.html'
  md5 'f134276bb9dc761dbb318c5511e65833'

  depends_on 'gettext'

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