12 lines
288 B
Ruby
12 lines
288 B
Ruby
require 'formula'
|
|
|
|
class Ppss < Formula
|
|
desc "Shell script to execute commands in parallel"
|
|
homepage 'http://ppss.googlecode.com'
|
|
url 'https://ppss.googlecode.com/files/ppss-2.97.tgz'
|
|
sha1 '097dd068c16078ead8024551be6e69786f8ba533'
|
|
|
|
def install
|
|
bin.install "ppss"
|
|
end
|
|
end
|