aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/scotch.rb
blob: 0ce813fe58646c004b08968f634471474972c552 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
require 'formula'

class Scotch < Formula
  version '5.1.12'
  url 'https://gforge.inria.fr/frs/download.php/28933'
  homepage 'https://gforge.inria.fr/projects/scotch'
  md5 'f873ff2bad519f9be7bc7b117bbe0bc4'

  def install
    Dir.chdir 'src'
    ln_s 'Make.inc/Makefile.inc.i686_mac_darwin8', 'Makefile.inc'
    system 'make scotch'
    system 'make ptscotch'
    system "make install prefix=#{prefix}"
  end

end