homebrew-core/Formula/ptex.rb
2018-05-03 07:33:22 -07:00

21 lines
678 B
Ruby

class Ptex < Formula
desc "Texture mapping system"
homepage "http://ptex.us"
url "https://github.com/wdas/ptex/archive/v2.1.33.tar.gz"
sha256 "7c437de43fbfd45b8355f528b0276650e6f6a82357591a8540ca4b7e2012a327"
bottle do
cellar :any
sha256 "4da50057c397b08a7dabbc621947f607b98cfbc887cd43f0bfa41960b36c6466" => :high_sierra
sha256 "227c2b01f8398714d38c494061a630385dfd630e1b30bf5a651c14667c9f0621" => :sierra
sha256 "12d030b336d928a80776188daa86fe4de608e5bc4516b8382d52a508a5a4091f" => :el_capitan
end
depends_on "cmake" => :build
def install
system "make", "prefix=#{prefix}"
system "make", "test"
system "make", "install"
end
end