2009-10-15 08:07:12 +00:00
|
|
|
require 'formula'
|
2009-08-31 11:18:17 +00:00
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Tree < Formula
|
2011-04-26 20:39:18 +00:00
|
|
|
url 'http://mama.indstate.edu/users/ice/tree/src/tree-1.5.3.tgz'
|
2010-04-07 05:58:35 +00:00
|
|
|
homepage 'http://mama.indstate.edu/users/ice/tree/'
|
|
|
|
md5 'c07ce9065667a23f27aca4de8ecccb10'
|
2009-08-31 11:18:17 +00:00
|
|
|
|
|
|
|
def install
|
2010-08-10 15:05:31 +00:00
|
|
|
system "#{ENV.cc} #{ENV.cflags} -o tree tree.c strverscmp.c"
|
2009-09-21 18:52:47 +00:00
|
|
|
|
2009-08-31 11:18:17 +00:00
|
|
|
bin.install "tree"
|
|
|
|
man1.install "man/tree.1"
|
|
|
|
end
|
|
|
|
end
|