Skip to content

Instantly share code, notes, and snippets.

@pheaver
Created June 1, 2010 12:37
Show Gist options
  • Save pheaver/420895 to your computer and use it in GitHub Desktop.
Save pheaver/420895 to your computer and use it in GitHub Desktop.
require 'formula'
class Polyml <Formula
url 'http://sourceforge.net/projects/polyml/files/polyml/5.3/polyml.5.3.tar.gz/download'
version '5.3'
homepage 'http://www.polyml.org'
md5 'c4e3a33307c4465c4f068ae4fa225ced'
def install
args = [ "--prefix=#{prefix}",
"--disable-dependency-tracking",
"--disable-debug"
]
system "./configure", *args
system "make install"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment