homebrew-core/Formula/psgrep.rb
2015-06-05 14:47:57 +01:00

21 lines
498 B
Ruby

require 'formula'
class Psgrep < Formula
desc "Shortcut for the 'ps aux | grep' idiom"
homepage 'http://code.google.com/p/psgrep/'
url 'https://psgrep.googlecode.com/files/psgrep-1.0.6.tar.bz2'
sha1 'fe1102546971358a5eff2cff613d70ee63395444'
head 'http://psgrep.googlecode.com/hg/'
def install
bin.install "psgrep"
man1.install "psgrep.1"
end
test do
output = `#{bin}/psgrep #{Process.pid}`
assert output.include?($0)
assert_equal 0, $?.exitstatus
end
end