bade0c321c
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>
13 lines
348 B
Ruby
13 lines
348 B
Ruby
require 'formula'
|
|
|
|
class Stow < Formula
|
|
homepage 'http://www.gnu.org/software/stow/'
|
|
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}"
|
|
system "make install"
|
|
end
|
|
end
|