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

class Mpsolve < Formula
  url 'http://www.dm.unipi.it/cluster-pages/mpsolve/mpsolve.tgz'
  homepage 'http://www.dm.unipi.it/cluster-pages/mpsolve/index.htm'
  sha1 '7b445f835325c62928deb99155b7ca9e646e6f97'
  version '2.2'

  depends_on 'gmp'

  def install
    system 'make'
    bin.install 'unisolve'
  end
end