homebrew-core/Formula/libmatio.rb
Houtan Bastani 3505728e16 libmatio 1.5.1
Closes Homebrew/homebrew#18390.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2013-03-11 12:44:09 -05:00

24 lines
615 B
Ruby

require 'formula'
class Libmatio < Formula
homepage 'http://matio.sourceforge.net'
url 'http://downloads.sourceforge.net/project/matio/matio/1.5.1/matio-1.5.1.tar.bz2'
sha1 '12b8ed59688b2f41903ddc3e7975f21f10fe42bb'
option 'with-hdf5', 'Enable support for newer MAT files that use the HDF5-format'
depends_on 'hdf5' => :optional
def install
args = %W[
--prefix=#{prefix}
--with-zlib=/usr
--enable-extended-sparse=yes
]
args << "--with-hdf5=#{HOMEBREW_PREFIX}" if build.with? 'hdf5'
system "./configure", *args
system "make"
system "make install"
end
end