blob: a5253f21f42b9bd355b1ed5f9ad8b58d61f6b5f5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
  | 
class Snapraid < Formula
  homepage "http://snapraid.sourceforge.net/"
  head "git://snapraid.git.sourceforge.net/gitroot/snapraid/snapraid"
  url "https://downloads.sourceforge.net/project/snapraid/snapraid-7.1.tar.gz"
  sha1 "3aa3ee982c21c6e19f31988cc1805dc535404334"
  def install
    system "./configure", "--prefix=#{prefix}"
    system "make"
    system "make", "install"
  end
end
  |