61b2307139
brewkit.rb changes ENV destructively, so lets not do that everytime a formula is required. Now it's possible for other tools to require a formula description without worrying about side-effects.
12 lines
279 B
Ruby
12 lines
279 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
|