2012-10-17 14:59:17 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Pbrt < Formula
|
|
|
|
homepage 'http://pbrt.org/'
|
2012-12-15 15:44:01 +00:00
|
|
|
url 'https://github.com/mmp/pbrt-v2/tarball/2.0.342'
|
|
|
|
sha1 '60ca05448e69ae750b9f5cb07a1e55204d793698'
|
2012-10-17 14:59:17 +00:00
|
|
|
|
|
|
|
depends_on "openexr"
|
|
|
|
|
|
|
|
def install
|
|
|
|
cd "src" do
|
|
|
|
system "make"
|
|
|
|
prefix.install "bin"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|