Created
January 28, 2015 05:57
-
-
Save Congee/e757954e13947c5497dd to your computer and use it in GitHub Desktop.
pycdc_homebrew_formula
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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