aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/pbrt.rb
blob: f79b74a99efe5b5165c1e2dae92298e94b3ab6c2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
require 'formula'

class Pbrt < Formula
  homepage 'http://pbrt.org/'
  url 'https://github.com/mmp/pbrt-v2/archive/2.0.342.tar.gz'
  sha1 'c18e4cb5acdd3120573c26be702e452e77273a79'

  depends_on "openexr"

  def install
    cd "src" do
      system "make"
      prefix.install "bin"
    end
  end
end