homebrew-core/Formula/dcmtk.rb

29 lines
727 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class Dcmtk < Formula
homepage 'http://dicom.offis.de/dcmtk.php.en'
url 'ftp://dicom.offis.de/pub/dicom/offis/software/dcmtk/dcmtk360/dcmtk-3.6.0.tar.gz'
md5 '19409e039e29a330893caea98715390e'
depends_on 'libtiff'
depends_on 'doxygen' if ARGV.include? '--with-docs'
def options
[['--with-docs', 'Install development libraries/headers and HTML docs']]
end
def install
2011-03-18 17:30:47 +00:00
ENV.m64 if MacOS.prefer_64_bit?
ENV.x11
args = std_cmake_parameters.split
args << '-DDCMTK_WITH_DOXYGEN=YES' if ARGV.include? '--with-docs'
2012-02-22 04:48:36 +00:00
mkdir 'build' do
system 'cmake', '..', *args
system 'make DOXYGEN' if ARGV.include? '--with-docs'
system 'make install'
end
end
end