pycdc_homebrew_formula
class Pycdc < Formula
homepage "https://github.com/zrax/pycdc"
url "https://github.com/zrax/pycdc.git"
version "HEAD"
depends_on "cmake" => :build
def install
system "cmake", "."
system "make"
bin.install "pycdc", "pycdas"
end
def caveats; <<-EOS.undent
python3 not supported
EOS
end
end