Skip to content

Instantly share code, notes, and snippets.

@serras
Created April 17, 2013 08:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save serras/5402806 to your computer and use it in GitHub Desktop.
Save serras/5402806 to your computer and use it in GitHub Desktop.
require 'formula'
class Ppl < Formula
homepage 'http://bugseng.com/products/ppl/'
url 'http://bugseng.com/products/ppl/download/ftp/releases/1.0/ppl-1.0.tar.gz'
sha1 '5f543206cc9de17d48ff797e977547b61b40ab2c'
depends_on 'gmp'
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--enable-optimization=sspeed",
"--enable-interfaces=ciao_prolog"
system "make install"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment