homebrew-core/Formula/scotch.rb

18 lines
423 B
Ruby
Raw Normal View History

require 'formula'
class Scotch < Formula
homepage 'https://gforge.inria.fr/projects/scotch'
2012-02-10 07:01:58 +00:00
url 'https://gforge.inria.fr/frs/download.php/28933'
version '5.1.12'
md5 'f873ff2bad519f9be7bc7b117bbe0bc4'
def install
Dir.chdir 'src'
ln_s 'Make.inc/Makefile.inc.i686_mac_darwin8', 'Makefile.inc'
system 'make scotch'
system 'make ptscotch'
2012-02-10 07:01:58 +00:00
system "make", "install", "prefix=#{prefix}"
end
end