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
|
2010-04-07 05:58:35 +00:00
|
|
|
homepage 'http://mama.indstate.edu/users/ice/tree/'
|
2012-02-10 02:27:01 +00:00
|
|
|
url 'http://mama.indstate.edu/users/ice/tree/src/tree-1.6.0.tgz'
|
2011-07-19 03:58:11 +00:00
|
|
|
md5 '04e967a3f4108d50cde3b4b0e89e970a'
|
2009-08-31 11:18:17 +00:00
|
|
|
|
|
|
|
def install
|
2012-02-10 02:27:01 +00:00
|
|
|
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'
|
2009-09-21 18:52:47 +00:00
|
|
|
|
2012-02-10 02:27:01 +00:00
|
|
|
system "make", "prefix=#{prefix}",
|
|
|
|
"MANDIR=#{man1}",
|
|
|
|
"CC=#{ENV.cc}",
|
|
|
|
"CFLAGS=#{ENV.cflags}",
|
|
|
|
"LDFLAGS=#{ENV.ldflags}",
|
|
|
|
"OBJS=#{objs}",
|
|
|
|
"install"
|
2009-08-31 11:18:17 +00:00
|
|
|
end
|
|
|
|
end
|