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

class Global <Formula
  @url='http://ftp.gnu.org/gnu/global/global-5.6.tar.gz'
  @homepage='http://www.gnu.org/software/global/'
  @md5='cc1f79cb4f62ab4b4c8b5e8a68c51f5e'

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