Signed-off-by: Adam Vandenberg <flangy@gmail.com>
master
Tianyi Cui 2010-10-04 21:41:27 +08:00 committed by Adam Vandenberg
parent 1c27ed2517
commit 1eda639a6f
1 changed files with 13 additions and 0 deletions

13
Formula/rush.rb Normal file
View File

@ -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