diff options
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/charm-tools.rb | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/Library/Formula/charm-tools.rb b/Library/Formula/charm-tools.rb new file mode 100644 index 000000000..115d7529d --- /dev/null +++ b/Library/Formula/charm-tools.rb @@ -0,0 +1,20 @@ +require 'formula' + +class CharmTools < Formula + homepage 'https://launchpad.net/charm-tools' + url 'https://launchpad.net/charm-tools/1.0/1.0.1/+download/charmtools-1.0.1.tar.gz' + sha1 '08c7a7c4f266c037d1405981adc080cd6c5be9e1' + + depends_on :python + depends_on 'libyaml' + + def install + python do + system python, "setup.py", "install", "--prefix=#{prefix}" + end + end + + def caveats + python.standard_caveats if python + end +end |
