diff options
| author | David Christenson | 2014-06-10 15:11:00 -0600 |
|---|---|---|
| committer | Jack Nagel | 2014-06-10 22:54:36 -0500 |
| commit | d3b89a8c91bbe7aeef18d6630eaf3e0976c25f17 (patch) | |
| tree | 779ed354bd5965dfff9a45949c76d6eab82ec21b /Library | |
| parent | ace3528044b282868d9f4c39687438feeb2a3f48 (diff) | |
| download | homebrew-d3b89a8c91bbe7aeef18d6630eaf3e0976c25f17.tar.bz2 | |
global 6.3
Update to latest stable release, use HTTPS on homepage and mirror,
change single quotes to double.
Closes #30037.
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/global.rb | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/Library/Formula/global.rb b/Library/Formula/global.rb index 00a40deaa..08c6a635b 100644 --- a/Library/Formula/global.rb +++ b/Library/Formula/global.rb @@ -1,10 +1,10 @@ -require 'formula' +require "formula" class Global < Formula - homepage 'http://www.gnu.org/software/global/' - url 'http://ftpmirror.gnu.org/global/global-6.2.12.tar.gz' - mirror 'http://ftp.gnu.org/gnu/global/global-6.2.12.tar.gz' - sha1 '1fc0948ee76185d38733750567a2bdb6b9b07304' + homepage "https://www.gnu.org/software/global/" + url "http://ftpmirror.gnu.org/global/global-6.3.tar.gz" + mirror "https://ftp.gnu.org/gnu/global/global-6.3.tar.gz" + sha1 "01180de13918a29d4af62ed9c86dbe84ed16f550" bottle do sha1 "81160b83cf9bee1e5b97c1c1e40b10f340798f15" => :mavericks @@ -13,18 +13,18 @@ class Global < Formula end head do - url 'cvs://:pserver:anonymous:@cvs.savannah.gnu.org:/sources/global:global' + url "cvs://:pserver:anonymous:@cvs.savannah.gnu.org:/sources/global:global" depends_on "autoconf" => :build depends_on "automake" => :build depends_on "libtool" => :build end - option 'with-exuberant-ctags', 'Enable Exuberant Ctags as a plug-in parser' + option "with-exuberant-ctags", "Enable Exuberant Ctags as a plug-in parser" - if build.with? 'exuberant-ctags' - depends_on 'ctags' - skip_clean 'lib/gtags/exuberant-ctags.la' + if build.with? "exuberant-ctags" + depends_on "ctags" + skip_clean "lib/gtags/exuberant-ctags.la" end def install @@ -36,17 +36,17 @@ class Global < Formula --sysconfdir=#{etc} ] - if build.with? 'exuberant-ctags' + if build.with? "exuberant-ctags" args << "--with-exuberant-ctags=#{HOMEBREW_PREFIX}/bin/ctags" end system "./configure", *args system "make install" - etc.install 'gtags.conf' + etc.install "gtags.conf" # we copy these in already - cd share/'gtags' do + cd share/"gtags" do rm %w[README COPYING LICENSE INSTALL ChangeLog AUTHORS] end end |
