New formula parallel

paralell is a utility to build and execute shell command lines from standard input in parallel

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
This commit is contained in:
Travis Cline 2010-05-28 15:35:13 -05:00 committed by Adam Vandenberg
parent 9b62b403f4
commit d5a61d0674

12
Formula/parallel.rb Normal file
View file

@ -0,0 +1,12 @@
require 'formula'
class Parallel <Formula
url 'ftp://ftp.gnu.org/gnu/parallel/parallel-20100424.tar.bz2'
homepage 'http://savannah.gnu.org/projects/parallel/'
md5 '7f75ec6bd43768f27aa2667a3f4ce96d'
def install
system "./configure", "--prefix=#{prefix}"
system "make install"
end
end