aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/global.rb
blob: 01b4db4bd24858b54fd8e993c15317a6b1da8d36 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
require 'formula'

class Global <Formula
  url 'http://tamacom.com/global/global-5.8.1.tar.gz'
  homepage 'http://www.gnu.org/software/global/'
  md5 '9c357098e42c9ba32776ccd6b549d85d'

  def install
    system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
    system "make install"
    
    # we copy these in already
    Dir.chdir(share+'gtags') do
      FileUtils.rm %w[README COPYING LICENSE INSTALL ChangeLog AUTHORS]
    end
  end
end