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

class Glpk < Formula
  homepage 'http://www.gnu.org/software/glpk/'
  url 'http://ftpmirror.gnu.org/glpk/glpk-4.47.tar.gz'
  mirror 'http://ftp.gnu.org/gnu/glpk/glpk-4.47.tar.gz'
  sha1 '35e16d3167389b6bc75eb51b4b48590db59f789c'

  def install
    system "./configure", "--disable-dependency-tracking",
                          "--prefix=#{prefix}"
    system "make install"
  end
end