blob: 4541bb2433863a517372b5cb1e698a3106548565 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
require 'formula'
class Ppl < Formula
url 'http://bugseng.com/products/ppl/download/ftp/releases/0.11.2/ppl-0.11.2.tar.bz2'
homepage 'http://bugseng.com/products/ppl/'
md5 'c24429e6c3bc97d45976a63f40f489a1'
depends_on 'gmp'
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--enable-optimization=sspeed"
system "make install"
end
end
|