2013-01-18 13:07:23 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Clasp < Formula
|
|
|
|
homepage 'http://potassco.sourceforge.net/'
|
2014-01-11 22:37:18 +00:00
|
|
|
url 'http://downloads.sourceforge.net/project/potassco/clasp/2.1.4/clasp-2.1.4-source.tar.gz'
|
|
|
|
sha1 '4c6ec3ee2f68fd5f9b3574ebb5a8b069d65d12df'
|
2013-01-18 13:07:23 +00:00
|
|
|
|
|
|
|
option 'with-mt', 'Enable multi-thread support'
|
|
|
|
|
|
|
|
depends_on 'tbb' if build.include? 'with-mt'
|
|
|
|
|
|
|
|
def install
|
|
|
|
if build.include? 'with-mt'
|
|
|
|
ENV['TBB30_INSTALL_DIR'] = Formula.factory("tbb").opt_prefix
|
|
|
|
build_dir = 'build/release_mt'
|
|
|
|
else
|
|
|
|
build_dir = 'build/release'
|
|
|
|
end
|
|
|
|
|
|
|
|
args = %W[
|
|
|
|
--config=release
|
|
|
|
--prefix=#{prefix}
|
|
|
|
]
|
|
|
|
args << "--with-mt" if build.include? 'with-mt'
|
|
|
|
|
|
|
|
bin.mkpath
|
|
|
|
system "./configure.sh", *args
|
|
|
|
|
|
|
|
cd build_dir do
|
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|