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:
parent
9b62b403f4
commit
d5a61d0674
1 changed files with 12 additions and 0 deletions
12
Formula/parallel.rb
Normal file
12
Formula/parallel.rb
Normal 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
|
Loading…
Reference in a new issue