2012-10-17 14:59:17 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Pbrt < Formula
|
|
|
|
homepage 'http://pbrt.org/'
|
2013-04-01 16:43:03 +00:00
|
|
|
url 'https://github.com/mmp/pbrt-v2/archive/2.0.342.tar.gz'
|
|
|
|
sha1 'c18e4cb5acdd3120573c26be702e452e77273a79'
|
2012-10-17 14:59:17 +00:00
|
|
|
|
|
|
|
depends_on "openexr"
|
|
|
|
|
|
|
|
def install
|
|
|
|
cd "src" do
|
|
|
|
system "make"
|
|
|
|
prefix.install "bin"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|