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.1.tar.gz"
sha1 "f0e611ffe8a5c36e5ef89cc7eab1ff4ab7f97875"
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