7bd947eb0b
* Use new "url" features * Use keg_only DSL * Use "skip_clean :all" DSL * Whitespace and style cleanups * Make bash invocations less silly * Use new man2-man8 helpers * Remove "FileUtils." since it is included in Formula * Use real names for deps instead of aliases * ENV.x11 now updates path, so remove that from individual brews
19 lines
497 B
Ruby
19 lines
497 B
Ruby
require 'formula'
|
|
|
|
class Pure < Formula
|
|
url 'http://pure-lang.googlecode.com/files/pure-0.43.tar.gz'
|
|
homepage 'http://code.google.com/p/pure-lang/'
|
|
md5 'f15b77eb6bb15e78c69e94a4ac1d9bd9'
|
|
|
|
depends_on 'llvm'
|
|
depends_on 'gmp'
|
|
depends_on 'readline'
|
|
|
|
def install
|
|
system "./configure", "--disable-debug", "--disable-dependency-tracking",
|
|
"--prefix=#{prefix}",
|
|
"--enable-release"
|
|
system "make"
|
|
system "make install"
|
|
end
|
|
end
|