forked from lotia/homebrew-versions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
hdf4.rb
52 lines (44 loc) · 1.4 KB
/
hdf4.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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
require 'formula'
def fortran?
ARGV.include? '--enable-fortran'
end
class Hdf4 < Formula
homepage 'http://www.hdfgroup.org'
url 'http://www.hdfgroup.org/ftp/HDF/releases/HDF4.2.6/src/hdf-4.2.6.tar.bz2'
md5 'eed281ded7f81f6ba1a3b1b1d5109bfe'
depends_on 'cmake' => :build
depends_on 'szip'
def options
[['--enable-fortran', 'Build Fortran libraries']]
end
def install
ENV.fortran if fortran?
args = std_cmake_args
args.concat [
'-DBUILD_SHARED_LIBS=ON',
'-DBUILD_TESTING=OFF',
'-DHDF4_BUILD_TOOLS=ON',
'-DHDF4_BUILD_UTILS=ON',
'-DHDF4_BUILD_WITH_INSTALL_NAME=ON',
'-DHDF4_ENABLE_JPEG_LIB_SUPPORT=ON',
'-DHDF4_ENABLE_NETCDF=ON',
'-DHDF4_ENABLE_SZIP_ENCODING=ON',
'-DHDF4_ENABLE_SZIP_SUPPORT=ON',
'-DHDF4_ENABLE_Z_LIB_SUPPORT=ON',
"-DSZIP_INCLUDE_DIR=#{HOMEBREW_PREFIX}/include",
"-DSZIP_LIBRARY_DEBUG=#{HOMEBREW_PREFIX}/lib/libsz.dylib",
"-DSZIP_LIBRARY_RELEASE=#{HOMEBREW_PREFIX}/lib/libsz.dylib"
]
args.concat %W[-DHDF4_BUILD_FORTRAN=ON -DCMAKE_Fortran_MODULE_DIRECTORY=#{include}] if fortran?
mkdir 'build' do
system 'cmake', '..', *args
system 'make install'
end
end
def caveats; <<-EOS.undent
HDF4 has been superseeded by HDF5. However, the API changed
substantially and some programs still require the HDF4 libraries in order
to function.
EOS
end
end