aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorAdam Vandenberg2010-06-19 10:38:58 -0700
committerAdam Vandenberg2010-06-19 10:38:58 -0700
commit16019484d7f1934d8867ea3ed685b61f60124b59 (patch)
tree5b028a7b2ddf7b99151435c99485b47a275aaf7c /Library/Formula
parentc42682d5d35c9ddcb2cf406445859fa16b1a3efd (diff)
downloadhomebrew-16019484d7f1934d8867ea3ed685b61f60124b59.tar.bz2
Redact "Google Command Line"
Google Command Line is available via pypi, so it can be installed via 'pip'.
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/googlecl.rb23
1 files changed, 0 insertions, 23 deletions
diff --git a/Library/Formula/googlecl.rb b/Library/Formula/googlecl.rb
deleted file mode 100644
index f22fecb77..000000000
--- a/Library/Formula/googlecl.rb
+++ /dev/null
@@ -1,23 +0,0 @@
-require 'formula'
-
-# Include a private copy of this library
-class Gdata <Formula
- url 'http://gdata-python-client.googlecode.com/files/gdata-2.0.10.tar.gz'
- homepage 'http://code.google.com/p/gdata-python-client/'
- sha1 'b3eb311f844c188a1f5f599b5cdc2e732d78c796'
-end
-
-class Googlecl <Formula
- url 'http://googlecl.googlecode.com/files/googlecl-0.9.5.tar.gz'
- homepage 'http://code.google.com/p/googlecl/'
- sha1 '4aec2e8401ef27791036744d41cf7c277ce9afd3'
-
- def install
- libexec.install Dir["src/*"]
- Gdata.new.brew { libexec.install Dir["src/*"] }
- man1.install 'man/google.1'
-
- bin.mkpath
- ln_s libexec+'google', bin
- end
-end