aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorTianyi Cui2010-10-04 21:41:27 +0800
committerAdam Vandenberg2010-10-07 20:00:42 -0700
commit3e21513fa8a8b9c6b6086377e755d4e44f7e921d (patch)
treef35334d7f060883cb48f06cda3fd284dbee17c8a /Library/Formula
parenta88c655281420196af6a5547feab8b66cbb68235 (diff)
downloadhomebrew-3e21513fa8a8b9c6b6086377e755d4e44f7e921d.tar.bz2
New formula: rush (http://www.gnu.org/software/rush/)
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/rush.rb13
1 files changed, 13 insertions, 0 deletions
diff --git a/Library/Formula/rush.rb b/Library/Formula/rush.rb
new file mode 100644
index 000000000..046c1dd04
--- /dev/null
+++ b/Library/Formula/rush.rb
@@ -0,0 +1,13 @@
+require 'formula'
+
+class Rush <Formula
+ url 'http://ftp.gnu.org/gnu/rush/rush-1.6.tar.gz'
+ homepage 'http://www.gnu.org/software/rush/'
+ md5 '32087472928220d0009fd65670d42741'
+
+ def install
+ system "./configure", "--disable-debug", "--disable-dependency-tracking",
+ "--prefix=#{prefix}"
+ system "make install"
+ end
+end