aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorRay Slakinski2011-06-16 15:04:57 -0400
committerAdam Vandenberg2011-08-31 21:25:56 -0700
commit2586eb7347626b9896fe2e878b4bb0210adfd507 (patch)
treebab68041f1728c507795b16f82a26eec19edf416 /Library/Formula
parentb155d22f713cfae669c2318b55fd5c47166083f4 (diff)
downloadhomebrew-2586eb7347626b9896fe2e878b4bb0210adfd507.tar.bz2
cast 0.2.0
Cloudkick's Cast - The Open Deployment Platform Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/cast.rb14
1 files changed, 14 insertions, 0 deletions
diff --git a/Library/Formula/cast.rb b/Library/Formula/cast.rb
new file mode 100644
index 000000000..3f17cf1fd
--- /dev/null
+++ b/Library/Formula/cast.rb
@@ -0,0 +1,14 @@
+require 'formula'
+
+class Cast < Formula
+ url 'http://files.cast-project.org/cast-0.2.0.tar.gz'
+ homepage 'http://cast-project.org'
+ md5 'b6a4f2b1126e969ee1696f50471c7345'
+
+ depends_on 'scons' => :build
+ depends_on 'runit'
+
+ def install
+ system "scons", "install", "CASTPREFIX=#{prefix}"
+ end
+end