aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorMarco Ceppi2013-10-09 17:53:19 -0400
committerAdam Vandenberg2013-10-10 07:50:39 -0700
commit09ca1a72cf62d3039dc5d9d059ce8212e3512be1 (patch)
tree4430600dd9e2c025adfbee16ac613282f8032f0d /Library/Formula
parent7b7ebf9c4a9d3271d3fd5de872aa787cc3515dd5 (diff)
downloadhomebrew-09ca1a72cf62d3039dc5d9d059ce8212e3512be1.tar.bz2
Charm Tools 1.0.1
Closes #23161. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/charm-tools.rb20
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