88779ade49
Closes Homebrew/homebrew#14653.
21 lines
689 B
Ruby
21 lines
689 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.6.0.tgz'
|
|
sha1 '350f851f68859a011668362dd0e7ee81fd1b713a'
|
|
|
|
def install
|
|
ENV.append 'CFLAGS', '-fomit-frame-pointer'
|
|
ENV.append 'CFLAGS', '-no-cpp-precomp' unless ENV.compiler == :clang
|
|
objs = 'tree.o unix.o html.o xml.o hash.o color.o strverscmp.o'
|
|
|
|
system "make", "prefix=#{prefix}",
|
|
"MANDIR=#{man1}",
|
|
"CC=#{ENV.cc}",
|
|
"CFLAGS=#{ENV.cflags}",
|
|
"LDFLAGS=#{ENV.ldflags}",
|
|
"OBJS=#{objs}",
|
|
"install"
|
|
end
|
|
end
|