2011-03-11 06:45:07 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-21 20:02:17 +00:00
|
|
|
class Memtester < Formula
|
2011-08-05 21:56:53 +00:00
|
|
|
url 'http://pyropus.ca/software/memtester/old-versions/memtester-4.2.2.tar.gz'
|
2011-03-11 06:45:07 +00:00
|
|
|
homepage 'http://pyropus.ca/software/memtester/'
|
2011-08-05 21:56:53 +00:00
|
|
|
md5 '0118616cc8860c6b85ef6a1281da1783'
|
2011-03-11 06:45:07 +00:00
|
|
|
|
|
|
|
def install
|
|
|
|
inreplace "Makefile" do |s|
|
|
|
|
s.change_make_var! 'INSTALLPATH', prefix
|
|
|
|
s.gsub! 'man/man8', 'share/man/man8'
|
|
|
|
end
|
|
|
|
inreplace "conf-ld", " -s", ""
|
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|