blob: e5a29c94aa982ec863ff70157f6728133253dc7f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
require 'formula'
class Glpk < Formula
url 'http://ftp.gnu.org/gnu/glpk/glpk-4.47.tar.gz'
homepage 'http://www.gnu.org/software/glpk/'
md5 '8653bf20c1f7db96b9ed369a8598a1ce'
def install
system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}"
system "make install"
end
end
|