7bd947eb0b
* Use new "url" features * Use keg_only DSL * Use "skip_clean :all" DSL * Whitespace and style cleanups * Make bash invocations less silly * Use new man2-man8 helpers * Remove "FileUtils." since it is included in Formula * Use real names for deps instead of aliases * ENV.x11 now updates path, so remove that from individual brews
12 lines
276 B
Ruby
12 lines
276 B
Ruby
require 'formula'
|
|
|
|
class Pstree <Formula
|
|
url 'ftp://ftp.thp.uni-duisburg.de/pub/source/pstree-2.32.tar.gz'
|
|
homepage 'http://freshmeat.net/projects/pstree/'
|
|
md5 'ba6e274e06d63910cf9bb8664b932808'
|
|
|
|
def install
|
|
system "make pstree"
|
|
bin.install "pstree"
|
|
end
|
|
end
|