blob: fa306fe037d2e5df8d18fc696285ed4f529861fa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
  | 
require 'formula'
class Stow < Formula
  homepage 'http://www.gnu.org/software/stow/'
  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'
  def install
    system "./configure", "--prefix=#{prefix}"
    system "make install"
  end
end
  |