2010-05-01 07:06:05 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Stow < Formula
|
2010-05-01 07:06:05 +00:00
|
|
|
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'
|
2010-05-01 07:06:05 +00:00
|
|
|
|
|
|
|
def install
|
2012-02-10 06:05:30 +00:00
|
|
|
system "./configure", "--prefix=#{prefix}",
|
|
|
|
"--infodir=#{info}",
|
|
|
|
"--mandir=#{man}"
|
2010-05-01 07:06:05 +00:00
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|