blob: f135e33af86feb7088a3ce03304e441e38f160a6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
  | 
require 'formula'
class Pstree < Formula
  homepage 'http://freshmeat.net/projects/pstree/'
  url 'ftp://ftp.thp.uni-duisburg.de/pub/source/pstree-2.35.tar.gz'
  sha1 'e0b45290c0df1061581b45ce53b503d6fc6cfdf9'
  def install
    system "make pstree"
    bin.install "pstree"
  end
end
  |