aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorMartin Kuehl2010-02-17 15:10:26 +0100
committerAdam Vandenberg2010-02-24 22:18:39 -0800
commit248c81881474ce7ddcc64e70215b36a0d02c52d1 (patch)
treefbce1b59411c8945ee16cc1435b67896ffc9aebc /Library/Formula
parentdda9fbee091afeca3c0e8dceb02bf6792785c89e (diff)
downloadhomebrew-248c81881474ce7ddcc64e70215b36a0d02c52d1.tar.bz2
Updated Formula: global 5.8
Also remove erroneous call to `Pathname#rm`. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/global.rb8
1 files changed, 5 insertions, 3 deletions
diff --git a/Library/Formula/global.rb b/Library/Formula/global.rb
index 5048dccff..9d7154f49 100644
--- a/Library/Formula/global.rb
+++ b/Library/Formula/global.rb
@@ -1,15 +1,17 @@
require 'formula'
class Global <Formula
- @url='http://ftp.gnu.org/gnu/global/global-5.6.tar.gz'
+ @url='http://tamacom.com/global/global-5.8.tar.gz'
@homepage='http://www.gnu.org/software/global/'
- @md5='cc1f79cb4f62ab4b4c8b5e8a68c51f5e'
+ @md5='7ba2efb55269615b2722cca36aced2cb'
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]
+ Dir.chdir(share+'gtags') do
+ FileUtils.rm %w[README COPYING LICENSE INSTALL ChangeLog AUTHORS]
+ end
end
end