dc3dd 7.1.614

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
master
Mark A. Matienzo 2011-08-20 09:02:20 -04:00 committed by Adam Vandenberg
parent 2db4c9270f
commit 95fa65815f
1 changed files with 21 additions and 0 deletions

21
Formula/dc3dd.rb Normal file
View File

@ -0,0 +1,21 @@
require 'formula'
class Dc3dd < Formula
url 'http://downloads.sourceforge.net/project/dc3dd/dc3dd/7.1.0/dc3dd-7.1.614.tar.gz'
homepage 'http://dc3dd.sourceforge.net/'
md5 'b6c4ec16e7f539b17224d7f334f8396e'
def patches
# remove explicit dependency on automake 1.10.1
{ :p1 => 'https://raw.github.com/gist/1159050/611c91779ba90edc77b8489e006c96a8e0078462/dc3dd-automake.patch'}
end
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}", "--infodir=#{info}"
system "make"
system "make install"
rm (lib+'charset.alias')
prefix.install %w[README Options_Reference.txt Sample_Commands.txt]
end
end