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:
parent
3fdc0efb4d
commit
bade0c321c
1 changed files with 4 additions and 6 deletions
|
@ -2,14 +2,12 @@ require 'formula'
|
||||||
|
|
||||||
class Stow < Formula
|
class Stow < Formula
|
||||||
homepage 'http://www.gnu.org/software/stow/'
|
homepage 'http://www.gnu.org/software/stow/'
|
||||||
url 'http://ftpmirror.gnu.org/stow/stow-2.1.3.tar.gz'
|
url 'http://ftpmirror.gnu.org/stow/stow-2.2.0.tar.gz'
|
||||||
mirror 'http://ftp.gnu.org/gnu/stow/stow-2.1.3.tar.gz'
|
mirror 'http://ftp.gnu.org/gnu/stow/stow-2.2.0.tar.gz'
|
||||||
md5 'fbed3a8e3c57bb985566894deed335b7'
|
sha1 'b95091be6ebbbac8c5e5112d6d063299c5eefff2'
|
||||||
|
|
||||||
def install
|
def install
|
||||||
system "./configure", "--prefix=#{prefix}",
|
system "./configure", "--prefix=#{prefix}"
|
||||||
"--infodir=#{info}",
|
|
||||||
"--mandir=#{man}"
|
|
||||||
system "make install"
|
system "make install"
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue