blob: 39c46d71c881d1518cf71baa43d80eb758f2ff7f (
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.0.tar.gz"
sha1 "aec231ec0ad006cfc2f73cff01ed0fd3254dc111"
def install
system "./configure", "--prefix=#{prefix}"
system "make"
system "make", "install"
end
end
|