aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/metis.rb
blob: 4943459b4ce62f3a055fe75f83e31fcd4f69c6ee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
require 'formula'

class Metis < Formula
  homepage 'http://glaros.dtc.umn.edu/gkhome/views/metis'
  url 'http://glaros.dtc.umn.edu/gkhome/fetch/sw/metis/metis-5.0.2.tar.gz'
  sha1 'b5a278fa06c581e068a8296d158576a4b750f983'

  depends_on 'cmake' => :build

  def install
    system "make", "config", "prefix=#{prefix}"
    system "make install"
  end
end