homebrew-core/Formula/gdcm.rb
2019-06-04 19:16:27 +02:00

72 lines
2.3 KiB
Ruby

class Gdcm < Formula
desc "Grassroots DICOM library and utilities for medical files"
homepage "https://sourceforge.net/projects/gdcm/"
url "https://github.com/malaterre/GDCM/archive/v3.0.0.tar.gz"
sha256 "3de524690102bfa3e9c3a81ff3f17733138183f76b7a5f7d072b20024a255680"
bottle do
sha256 "214d4be15b09fe8657cd0a8ec4fb5356bce7d8b96948f60eee5f1989eaa15c59" => :mojave
sha256 "21fc5ac113f00a5485c39cc8d5a93b33a194ad773038f5ef31321153b4438b9a" => :high_sierra
sha256 "abee457c7b024fa8a8b935b4c282d6835ff2ba158144fa8c6f2f9c1671287fc6" => :sierra
end
depends_on "cmake" => :build
depends_on "ninja" => :build
depends_on "pkg-config" => :build
depends_on "swig" => :build
depends_on "openjpeg"
depends_on "openssl"
depends_on "python"
depends_on "vtk"
def install
ENV.cxx11
xy = Language::Python.major_minor_version "python3"
python_include = Utils.popen_read("python3 -c 'from distutils import sysconfig;print(sysconfig.get_python_inc(True))'").chomp
python_executable = Utils.popen_read("python3 -c 'import sys;print(sys.executable)'").chomp
args = std_cmake_args + %W[
-GNinja
-DGDCM_BUILD_APPLICATIONS=OFF
-DGDCM_BUILD_SHARED_LIBS=ON
-DGDCM_BUILD_TESTING=OFF
-DGDCM_BUILD_EXAMPLES=OFF
-DGDCM_BUILD_DOCBOOK_MANPAGES=OFF
-DGDCM_USE_VTK=ON
-DGDCM_USE_SYSTEM_OPENJPEG=ON
-DGDCM_USE_SYSTEM_OPENSSL=ON
-DGDCM_WRAP_PYTHON=ON
-DPYTHON_EXECUTABLE=#{python_executable}
-DPYTHON_INCLUDE_DIR=#{python_include}
-DGDCM_INSTALL_PYTHONMODULE_DIR=#{lib}/python#{xy}/site-packages
-DCMAKE_INSTALL_RPATH=#{lib}
-DGDCM_NO_PYTHON_LIBS_LINKING=ON
]
mkdir "build" do
ENV.append "LDFLAGS", "-undefined dynamic_lookup"
system "cmake", "..", *args
system "ninja"
system "ninja", "install"
end
end
test do
(testpath/"test.cxx").write <<~EOS
#include "gdcmReader.h"
int main(int, char *[])
{
gdcm::Reader reader;
reader.SetFileName("file.dcm");
}
EOS
system ENV.cxx, "-std=c++11", "-isystem", "#{include}/gdcm-3.0", "-o", "test.cxx.o", "-c", "test.cxx"
system ENV.cxx, "-std=c++11", "test.cxx.o", "-o", "test", "-L#{lib}", "-lgdcmDSED"
system "./test"
system "python3", "-c", "import gdcm"
end
end