aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/polyml.rb
blob: 527131698194e77081c3f452c8d550285e5fa01e (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 "https://downloads.sourceforge.net/project/polyml/polyml/5.5.2/polyml.5.5.2.tar.gz"
  sha1 "8926046162c073d01c1b3bcfc744c63adfafc0d2"

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