homebrew-core/Formula/snapraid.rb
2015-05-18 19:32:16 +08:00

28 lines
913 B
Ruby

class Snapraid < Formula
homepage "http://snapraid.sourceforge.net/"
url "https://downloads.sourceforge.net/project/snapraid/snapraid-8.1.tar.gz"
sha256 "6bf89a1319ac3403958cd2c98a9c6102728c0070cfa1aedd90c4561d93c54e5d"
head do
url "https://github.com/amadvance/snapraid.git"
depends_on "automake" => :build
depends_on "autoconf" => :build
end
bottle do
cellar :any
sha256 "10123687aa79706617cf0d62ee0a2d5e27d43ab633d9dc914089d325b3e22464" => :yosemite
sha256 "d5a7af73bdf89fd946d96139ae94dcb8e5b4e437a8836ba6c9c9a21d618af763" => :mavericks
sha256 "b5f0e760a5448d744cc279df69686d65d4aaa3d8523ca8d9a8731615ef55d059" => :mountain_lion
end
def install
system "./autogen.sh" if build.head?
system "./configure", "--prefix=#{prefix}"
system "make", "install"
end
test do
assert_match version.to_s, shell_output("#{bin}/snapraid --version")
end
end