summaryrefslogtreecommitdiff
path: root/homebrew
diff options
context:
space:
mode:
Diffstat (limited to 'homebrew')
-rw-r--r--homebrew/rcm.rb.in17
1 files changed, 17 insertions, 0 deletions
diff --git a/homebrew/rcm.rb.in b/homebrew/rcm.rb.in
new file mode 100644
index 0000000..3b858eb
--- /dev/null
+++ b/homebrew/rcm.rb.in
@@ -0,0 +1,17 @@
+require 'formula'
+
+class Rcm < Formula
+ homepage 'http://thoughtbot.github.io/rcm'
+ url 'http://thoughtbot.github.io/@PACKAGE@/dist/@DIST_ARCHIVES@'
+ sha1 '@DIST_SHA@'
+
+ def install
+ system "./configure", "--disable-debug", "--disable-dependency-tracking",
+ "--prefix=#{prefix}"
+ system "make", "install"
+ end
+
+ test do
+ system "lsrc"
+ end
+end