7bd947eb0b
* Use new "url" features * Use keg_only DSL * Use "skip_clean :all" DSL * Whitespace and style cleanups * Make bash invocations less silly * Use new man2-man8 helpers * Remove "FileUtils." since it is included in Formula * Use real names for deps instead of aliases * ENV.x11 now updates path, so remove that from individual brews
17 lines
469 B
Ruby
17 lines
469 B
Ruby
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
|
|
rm %w[README COPYING LICENSE INSTALL ChangeLog AUTHORS]
|
|
end
|
|
end
|
|
end
|