3043d11fa6
Smartmontools is a pair of utilities that monitor storage devices using SMART. This can give an early indication of disk failure. Signed-off-by: Adam Vandenberg <flangy@gmail.com> Updated to 5.39.1
12 lines
393 B
Ruby
12 lines
393 B
Ruby
require 'formula'
|
|
|
|
class Smartmontools <Formula
|
|
url 'http://downloads.sourceforge.net/project/smartmontools/smartmontools/5.39.1/smartmontools-5.39.1.tar.gz'
|
|
homepage 'http://sourceforge.net/apps/trac/smartmontools/'
|
|
md5 'f6f7380ae45587161c0adae8862110e9'
|
|
|
|
def install
|
|
system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}"
|
|
system "make install"
|
|
end
|
|
end
|