aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTravis Cline2010-05-28 15:35:13 -0500
committerAdam Vandenberg2010-05-28 13:45:52 -0700
commit62a20cd20fc99d2045eba7f5d298dff7777237a7 (patch)
treebdee2f68e44fa938cd4bb577b70cc00e9e931a7b
parentd35133491779870554e3ddbe3e26d87baab67750 (diff)
downloadhomebrew-62a20cd20fc99d2045eba7f5d298dff7777237a7.tar.bz2
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>
-rw-r--r--Library/Formula/parallel.rb12
1 files changed, 12 insertions, 0 deletions
diff --git a/Library/Formula/parallel.rb b/Library/Formula/parallel.rb
new file mode 100644
index 000000000..cdd3a1566
--- /dev/null
+++ b/Library/Formula/parallel.rb
@@ -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