pipes-sh 1.1.0 (new formula)

Closes Homebrew/homebrew#43120.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
This commit is contained in:
Kentaro Wada 2015-08-21 00:36:05 +09:00 committed by Mike McQuaid
parent d048e6345a
commit 1531cdb3d2

15
Formula/pipes-sh.rb Normal file
View file

@ -0,0 +1,15 @@
class PipesSh < Formula
desc "Animated pipes terminal screensaver"
homepage "https://github.com/pipeseroni/pipes.sh"
url "https://github.com/pipeseroni/pipes.sh/archive/v1.1.0.tar.gz"
sha256 "829f0815f0721453833942c8da28bf02845bfef9f844373d9ed67d5017a54588"
head "https://github.com/pipeseroni/pipes.sh.git"
def install
system "make", "install", "PREFIX=#{prefix}"
end
test do
assert_equal version.to_s, shell_output("#{bin}/pipes.sh -v").strip.split[-1]
end
end