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

class Polyml < Formula
  homepage 'http://www.polyml.org'
  url 'http://downloads.sourceforge.net/project/polyml/polyml/5.5.1/polyml.5.5.1.tar.gz'
  sha1 'f5a0d289eb0a891af5ac6e897ccc7718ccf32d89'

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