blob: 4733de7fac1fd5135f7e6c3db718a7a36f72882f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
require 'formula'
class Psgrep < Formula
url 'http://psgrep.googlecode.com/files/psgrep-1.0.6.tar.bz2'
head 'http://psgrep.googlecode.com/svn/trunk/'
homepage 'http://code.google.com/p/psgrep/'
sha1 'fe1102546971358a5eff2cff613d70ee63395444'
def install
bin.install "psgrep"
man1.install "psgrep.1"
end
end
|