42 lines
1.1 KiB
Ruby
42 lines
1.1 KiB
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
|
|
args = %W[--disable-debug
|
|
--disable-dependency-tracking
|
|
--prefix=#{prefix}
|
|
--infodir=#{info}]
|
|
|
|
# Check for stpncpy is broken, and the replacement fails to compile
|
|
# on Lion and newer; see https://github.com/mxcl/homebrew/issues/21510
|
|
args << "gl_cv_func_stpncpy=yes" if MacOS.version >= :lion
|
|
system "./configure", *args
|
|
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
|