aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/tree.rb
blob: 982b4bb5a182935bf9df03bbba6c8ce7c7999b17 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
require 'brewkit'

class Tree <Formula
  @url='ftp://mama.indstate.edu/linux/tree/tree-1.5.2.2.tgz'
  @homepage='http://mama.indstate.edu/users/ice/tree/'
  @md5='a7731a898e2c0d7e422a57a84ffbb06c'

  def install
    gcc = ENV['CC'] || "gcc"
    system "#{gcc} #{ENV['CFLAGS']} -o tree tree.c strverscmp.c"

    bin.install "tree"
    man1.install "man/tree.1"
  end
end