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"
|
2014-04-17 14:45:57 +00:00
|
|
|
depends_on "flex"
|
2012-10-17 14:59:17 +00:00
|
|
|
|
|
|
|
def install
|
2014-04-17 14:45:57 +00:00
|
|
|
system "make", "-C", "src"
|
|
|
|
prefix.install "src/bin"
|
2012-10-17 14:59:17 +00:00
|
|
|
end
|
|
|
|
end
|