forked from ahmadia/homebrew-science
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cgns.rb
35 lines (29 loc) · 878 Bytes
/
cgns.rb
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
29
30
31
32
33
34
35
require 'formula'
class Cgns < Formula
homepage 'http://cgns.sourceforge.net'
url 'https://downloads.sourceforge.net/project/cgns/cgnslib_3.2/cgnslib_3.2.1.tar.gz'
sha1 'ac8e4d226da9397d79385c19a7cea82b4abc1983'
depends_on :fortran
depends_on 'cmake' => :build
depends_on 'hdf5' => :recommended
depends_on 'szip'
def install
args = std_cmake_args + [
'-DENABLE_FORTRAN=YES',
'-DHDF5_NEED_SZIP=YES',
'-DENABLE_TESTS=YES'
]
args << '-DENABLE_64BIT=ON' if Hardware.is_64_bit? and MacOS.version >= :snow_leopard
if build.with? 'hdf5'
args << '-DENABLE_HDF5=YES'
args << '-DHDF5_NEED_ZLIB=YES'
args << '-DCMAKE_SHARED_LINKER_FLAGS=-lhdf5'
end
mkdir 'build' do
system 'cmake', '..', *args
system 'make'
system 'ctest --output-on-failure'
system 'make install'
end
end
end