homebrew-core/Formula/ctl.rb

23 lines
502 B
Ruby

require "formula"
class Ctl < Formula
homepage "https://github.com/ampas/CTL"
url "https://github.com/ampas/CTL/archive/ctl-1.5.2.tar.gz"
sha1 "2c4aff2d514eeadfac89c6f041d5ffa2e853a79d"
depends_on "cmake" => :build
depends_on "libtiff"
depends_on "ilmbase"
depends_on "openexr"
depends_on "aces_container"
def install
mkdir "build" do
system "cmake", "..", *std_cmake_args
system "make"
system "make", "check"
system "make", "install"
end
end
end