2011-08-20 13:02:20 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Dc3dd < Formula
|
2011-08-21 11:35:26 +00:00
|
|
|
homepage 'http://sourceforge.net/projects/dc3dd/'
|
2014-02-27 14:19:55 +00:00
|
|
|
url 'https://downloads.sourceforge.net/project/dc3dd/dc3dd/7.1.0/dc3dd-7.1.614.tar.gz'
|
2012-07-07 18:08:22 +00:00
|
|
|
sha1 '808abb6472861a88efd94fd22ffea7021007d769'
|
|
|
|
|
2011-08-20 13:02:20 +00:00
|
|
|
def install
|
2013-07-30 01:43:21 +00:00
|
|
|
args = %W[--disable-debug
|
|
|
|
--disable-dependency-tracking
|
|
|
|
--prefix=#{prefix}
|
|
|
|
--infodir=#{info}]
|
|
|
|
|
|
|
|
# Check for stpncpy is broken, and the replacement fails to compile
|
2013-12-14 18:13:11 +00:00
|
|
|
# on Lion and newer; see https://github.com/Homebrew/homebrew/issues/21510
|
2013-07-30 01:43:21 +00:00
|
|
|
args << "gl_cv_func_stpncpy=yes" if MacOS.version >= :lion
|
|
|
|
system "./configure", *args
|
2011-08-20 13:02:20 +00:00
|
|
|
system "make"
|
|
|
|
system "make install"
|
2012-11-11 19:20:09 +00:00
|
|
|
prefix.install %w[Options_Reference.txt Sample_Commands.txt]
|
2011-08-20 13:02:20 +00:00
|
|
|
end
|
|
|
|
end
|