diff options
| author | Sihui Xu | 2012-10-17 22:59:17 +0800 |
|---|---|---|
| committer | Adam Vandenberg | 2012-10-20 08:39:49 -0700 |
| commit | 2dd9f153615e54653d061c58cff850ae3850ed53 (patch) | |
| tree | d9f3d8267e5387de8d52c2f7b9541c3d61e8cca7 /Library/Formula/pbrt.rb | |
| parent | bcb64c7726d6bbf2381e9fc69d994d208f1d659a (diff) | |
| download | homebrew-2dd9f153615e54653d061c58cff850ae3850ed53.tar.bz2 | |
Pbrt 2.0.334
Closes #15510.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula/pbrt.rb')
| -rw-r--r-- | Library/Formula/pbrt.rb | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/Library/Formula/pbrt.rb b/Library/Formula/pbrt.rb new file mode 100644 index 000000000..9d9f40c9a --- /dev/null +++ b/Library/Formula/pbrt.rb @@ -0,0 +1,16 @@ +require 'formula' + +class Pbrt < Formula + homepage 'http://pbrt.org/' + url 'https://github.com/mmp/pbrt-v2/tarball/2.0.334' + sha1 'a5d1324f3ab9072bd6a88fee3cbc0c153bbb50eb' + + depends_on "openexr" + + def install + cd "src" do + system "make" + prefix.install "bin" + end + end +end |
