homebrew-core/Formula/aces_container.rb
Ben Hagen e6ca117247 aces_container 1.0 (new formula)
Closes Homebrew/homebrew#29621.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2014-05-28 07:13:23 -07:00

16 lines
381 B
Ruby

require "formula"
class AcesContainer < Formula
homepage "https://github.com/ampas/aces_container"
url "https://github.com/ampas/aces_container/archive/v1.0.tar.gz"
sha1 "48409883970bab42a1fbac9dc5c7bac96c8bacb3"
depends_on "cmake" => :build
def install
mkdir "build" do
system "cmake", "..", *std_cmake_args
system "make", "install"
end
end
end