aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authornibbles 2bits2012-07-02 01:14:42 -0700
committerJack Nagel2012-07-02 13:04:59 -0500
commitdcbb5c3abd21e12ace330abe44b9520a5c287051 (patch)
treefe883d3bfd107579882de648755568f50809fea3 /Library/Formula
parent3f948bcea33ef81cc184d71bfe791b367f67e377 (diff)
downloadhomebrew-dcbb5c3abd21e12ace330abe44b9520a5c287051.tar.bz2
stow 2.2.0
Upgrade stow to version 2.2.0. Stow is used to create symlinks. Remove the `--mandir` because it uses the correct path. Remove the `--infodir` because it also uses the correct path. Tested using clang and llvm from XCode-4.3.3. Closes #13162. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/stow.rb10
1 files changed, 4 insertions, 6 deletions
diff --git a/Library/Formula/stow.rb b/Library/Formula/stow.rb
index 94c93d194..fa306fe03 100644
--- a/Library/Formula/stow.rb
+++ b/Library/Formula/stow.rb
@@ -2,14 +2,12 @@ require 'formula'
class Stow < Formula
homepage 'http://www.gnu.org/software/stow/'
- url 'http://ftpmirror.gnu.org/stow/stow-2.1.3.tar.gz'
- mirror 'http://ftp.gnu.org/gnu/stow/stow-2.1.3.tar.gz'
- md5 'fbed3a8e3c57bb985566894deed335b7'
+ url 'http://ftpmirror.gnu.org/stow/stow-2.2.0.tar.gz'
+ mirror 'http://ftp.gnu.org/gnu/stow/stow-2.2.0.tar.gz'
+ sha1 'b95091be6ebbbac8c5e5112d6d063299c5eefff2'
def install
- system "./configure", "--prefix=#{prefix}",
- "--infodir=#{info}",
- "--mandir=#{man}"
+ system "./configure", "--prefix=#{prefix}"
system "make install"
end
end