homebrew-core/Formula/stow.rb

14 lines
398 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
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
2010-08-14 21:11:53 +00:00
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}", "--infodir=#{info}", "--mandir=#{man}"
system "make install"
end
end