blob: 964882b3dfdbeb8798f8e8bd416bfae8a451401a (
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.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
|