Skip to content

Instantly share code, notes, and snippets.

@katsyoshi
Created November 8, 2011 07:06
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save katsyoshi/1347196 to your computer and use it in GitHub Desktop.
Save katsyoshi/1347196 to your computer and use it in GitHub Desktop.
Jubatus Python Client
require 'formula'
class JubatusPythonClient < Formula
head 'https://github.com/jubatus/jubatus-python-client.git'
homepage ''
md5 ''
depends_on 'jubatus'
def install
system "python", "setup.py", "build"
system "python", "setup.py", "install"
end
def test
# This test will fail and we won't accept that! It's enough to just
# replace "false" with the main program this formula installs, but
# it'd be nice if you were more thorough. Test the test with
# `brew test jubatus-python-client`. Remove this comment before submitting
# your pull request!
system "false"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment