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-07-02 08:14:42 +00:00
|
|
|
url 'http://ftpmirror.gnu.org/stow/stow-2.2.0.tar.gz'
|
|
|
|
mirror 'http://ftp.gnu.org/gnu/stow/stow-2.2.0.tar.gz'
|
|
|
|
sha1 'b95091be6ebbbac8c5e5112d6d063299c5eefff2'
|
2010-05-01 07:06:05 +00:00
|
|
|
|
|
|
|
def install
|
2012-07-02 08:14:42 +00:00
|
|
|
system "./configure", "--prefix=#{prefix}"
|
2010-05-01 07:06:05 +00:00
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|