homebrew-core/Formula/stow.rb
Hiroyuki Iwatsuki 1b2dcd4480 stow formula
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2010-08-14 13:32:27 -07:00

12 lines
397 B
Ruby

require 'formula'
class Stow <Formula
url '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=#{prefix}/share/info", "--mandir=#{prefix}/share/man"
system "make install"
end
end