d5a61d0674
paralell is a utility to build and execute shell command lines from standard input in parallel Signed-off-by: Adam Vandenberg <flangy@gmail.com>
12 lines
303 B
Ruby
12 lines
303 B
Ruby
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
|