homebrew-core/Formula/dc3dd.rb

38 lines
992 B
Ruby

require 'formula'
class Dc3dd < Formula
homepage 'http://sourceforge.net/projects/dc3dd/'
url 'http://downloads.sourceforge.net/project/dc3dd/dc3dd/7.1.0/dc3dd-7.1.614.tar.gz'
sha1 '808abb6472861a88efd94fd22ffea7021007d769'
depends_on :automake
# Remove explicit dependency on automake 1.10.1
def patches; DATA; end
def install
system "./configure", "--disable-debug",
"--disable-dependency-tracking",
"--prefix=#{prefix}",
"--infodir=#{info}"
system "make"
system "make install"
prefix.install %w[Options_Reference.txt Sample_Commands.txt]
end
end
__END__
diff --git a/configure.ac b/configure.ac
index 5d1870a..b32639c 100644
--- a/configure.ac
+++ b/configure.ac
@@ -32,7 +32,7 @@ AC_CONFIG_SRCDIR(src/dc3dd.c)
AC_CONFIG_AUX_DIR(build-aux)
AC_CONFIG_HEADERS([lib/config.h:lib/config.hin])
-AM_INIT_AUTOMAKE([1.10.1])
+AM_INIT_AUTOMAKE
AC_PROG_CC_STDC
AM_PROG_CC_C_O