diff options
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/googlecl.rb | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/Library/Formula/googlecl.rb b/Library/Formula/googlecl.rb new file mode 100644 index 000000000..f22fecb77 --- /dev/null +++ b/Library/Formula/googlecl.rb @@ -0,0 +1,23 @@ +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 |
