Congee
1/28/2015 - 5:57 AM

pycdc_homebrew_formula

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