Skip to content

Instantly share code, notes, and snippets.

@Congee
Created January 28, 2015 05:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Congee/e757954e13947c5497dd to your computer and use it in GitHub Desktop.
Save Congee/e757954e13947c5497dd to your computer and use it in GitHub Desktop.
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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment