aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/stow.rb
blob: 61a33227bc941c9058ace348bd41f06ee20857da (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
require 'formula'

class Stow < Formula
  url 'http://ftpmirror.gnu.org/stow/stow-1.3.3.tar.gz'
  mirror 'http://ftp.gnu.org/gnu/stow/stow-1.3.3.tar.gz'
  homepage 'http://www.gnu.org/software/stow/'
  md5 '59a078c7056dd9dd97fb707063b69d03'

  def install
    system "./configure", "--disable-debug", "--disable-dependency-tracking",
                          "--prefix=#{prefix}", "--infodir=#{info}", "--mandir=#{man}"
    system "make install"
  end
end