1ffa70ce21
This reverts changes that effectively reverted: 76de8c15ef406733feb08cc8bd35b16f97e60e9d db306092699979cc966e7f7d5d4ab26c58645174
31 lines
905 B
Ruby
31 lines
905 B
Ruby
require 'formula'
|
|
|
|
class Tree < Formula
|
|
homepage 'http://mama.indstate.edu/users/ice/tree/'
|
|
url 'http://mama.indstate.edu/users/ice/tree/src/tree-1.7.0.tgz'
|
|
sha1 '35bd212606e6c5d60f4d5062f4a59bb7b7b25949'
|
|
|
|
bottle do
|
|
cellar :any
|
|
sha1 "d2e9699fce73145917f2b15f7f932765a47e1be6" => :mavericks
|
|
sha1 "7bdbb4ca0cc98d12c7fae1926c654786600beb0d" => :mountain_lion
|
|
sha1 "c92ed70a7a7d15f7ce5ee75a6851b59de11cf431" => :lion
|
|
end
|
|
|
|
def install
|
|
ENV.append 'CFLAGS', '-fomit-frame-pointer'
|
|
objs = 'tree.o unix.o html.o xml.o hash.o color.o strverscmp.o json.o'
|
|
|
|
system "make", "prefix=#{prefix}",
|
|
"MANDIR=#{man1}",
|
|
"CC=#{ENV.cc}",
|
|
"CFLAGS=#{ENV.cflags}",
|
|
"LDFLAGS=#{ENV.ldflags}",
|
|
"OBJS=#{objs}",
|
|
"install"
|
|
end
|
|
|
|
test do
|
|
system "#{bin}/tree", prefix
|
|
end
|
|
end
|