homebrew-core/Formula/pbrt.rb
2015-06-05 14:47:57 +01:00

16 lines
347 B
Ruby

require 'formula'
class Pbrt < Formula
desc "Physically based rendering"
homepage 'http://pbrt.org/'
url 'https://github.com/mmp/pbrt-v2/archive/2.0.342.tar.gz'
sha1 'c18e4cb5acdd3120573c26be702e452e77273a79'
depends_on "openexr"
depends_on "flex"
def install
system "make", "-C", "src"
prefix.install "src/bin"
end
end