Pidcat 1.4.1
Closes Homebrew/homebrew#27439. Closes Homebrew/homebrew#23351. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
This commit is contained in:
parent
7192a59bc8
commit
103118b8c9
1 changed files with 17 additions and 0 deletions
17
Formula/pidcat.rb
Normal file
17
Formula/pidcat.rb
Normal file
|
@ -0,0 +1,17 @@
|
|||
require 'formula'
|
||||
|
||||
class Pidcat < Formula
|
||||
homepage 'https://github.com/JakeWharton/pidcat'
|
||||
url 'https://github.com/JakeWharton/pidcat/archive/1.4.1.tar.gz'
|
||||
sha1 '89f806ae1fa3375ce188851c8c95fc1097467b82'
|
||||
head 'https://github.com/JakeWharton/pidcat.git'
|
||||
|
||||
def install
|
||||
bin.install 'pidcat.py' => 'pidcat'
|
||||
end
|
||||
|
||||
test do
|
||||
output = `#{bin}/pidcat --help`.strip
|
||||
assert_match /^usage: pidcat/, output
|
||||
end
|
||||
end
|
Loading…
Reference in a new issue