63748a5bb9
Closes Homebrew/homebrew#25110. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
37 lines
1.1 KiB
Ruby
37 lines
1.1 KiB
Ruby
require 'formula'
|
|
|
|
class Dgtal < Formula
|
|
homepage 'http://libdgtal.org'
|
|
url 'http://liris.cnrs.fr/dgtal/releases/DGtal-0.7.0-Source.tar.gz'
|
|
sha1 '2a5bec10b376cfde5c52760340aa553907664d9c'
|
|
|
|
head 'https://github.com/DGtal-team/DGtal.git'
|
|
|
|
option 'with-qglviewer', "Enable QGLViewer vizualisation"
|
|
option 'with-magick', "Enable GraphicsMagick for 2d image readers"
|
|
|
|
depends_on 'cmake' => :build
|
|
depends_on 'boost'
|
|
depends_on 'gmp' => :optional
|
|
depends_on 'cairo' => :optional
|
|
depends_on 'libqglviewer' if build.with? 'qglviewer'
|
|
depends_on 'graphicsmagick' if build.with? 'magick'
|
|
|
|
def install
|
|
args = std_cmake_args
|
|
args << "-DCMAKE_BUILD_TYPE=Release"
|
|
args << "-DBUILD_EXAMPLES=OFF"
|
|
args << "-DDGTAL_BUILD_TESTING=OFF"
|
|
args << "-DWITH_C11:bool=false"
|
|
|
|
args << "-DWITH_GMP=ON" if build.with? 'gmp'
|
|
args << "-DWITH_CAIRO=ON" if build.with? 'cairo'
|
|
args << "-DWITH_QGLVIEWER=ON" if build.with? 'qglviewer'
|
|
|
|
mkdir 'build' do
|
|
system "cmake", "..", *args
|
|
system "make"
|
|
system "make install"
|
|
end
|
|
end
|
|
end
|