homebrew-core/Formula/smartmontools.rb

13 lines
390 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class Smartmontools < Formula
2011-02-12 19:06:48 +00:00
url 'http://downloads.sourceforge.net/project/smartmontools/smartmontools/5.40/smartmontools-5.40.tar.gz'
homepage 'http://sourceforge.net/apps/trac/smartmontools/'
2011-02-12 19:06:48 +00:00
md5 '0f0be0239914ad87830a4fff594bda5b'
def install
system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}"
system "make install"
end
end