homebrew-core/Formula/stow.rb

16 lines
431 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class Stow < Formula
homepage 'http://www.gnu.org/software/stow/'
2012-02-10 06:05:30 +00:00
url 'http://ftpmirror.gnu.org/stow/stow-2.1.3.tar.gz'
mirror 'http://ftp.gnu.org/gnu/stow/stow-2.1.3.tar.gz'
md5 'fbed3a8e3c57bb985566894deed335b7'
def install
2012-02-10 06:05:30 +00:00
system "./configure", "--prefix=#{prefix}",
"--infodir=#{info}",
"--mandir=#{man}"
system "make install"
end
end