homebrew-core/Formula/dar.rb

17 lines
483 B
Ruby
Raw Normal View History

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",
2011-01-16 15:30:08 +00:00
"--prefix=#{prefix}", "--mandir=#{man}",
"--disable-build-html"
system "make install"
end
end