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 Homebrew/homebrew#13162.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
This commit is contained in:
nibbles 2bits 2012-07-02 01:14:42 -07:00 committed by Jack Nagel
parent 3fdc0efb4d
commit bade0c321c

View file

@ -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