dcmtk version 3.6.0 for OS X
The formula for dcmtk was recently updated to version 3.6.0.
To install dcmtk on your Mac, open your Terminal application and run the following commands;
brew update brew install dcmtk
The updated formula is as follows:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
require 'formula' 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? '--install-all' def options [['--install-all', 'Install development libraries/headers and HTML docs']] end def install ENV.deparallelize ENV.m64 if MacOS.prefer_64_bit? ENV.x11 system "./configure", "--disable-dependency-tracking", "--disable-debug", "--prefix=#{prefix}" system "make all" if ARGV.include? '--install-all' system "make install-all" else system "make install" end end end
This package, dcmtk, depends on;
libtiff
See which packages depend on dcmtk.














