2011-03-11 06:45:07 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-21 20:02:17 +00:00
|
|
|
class Memtester < Formula
|
2011-03-11 06:45:07 +00:00
|
|
|
homepage 'http://pyropus.ca/software/memtester/'
|
2012-08-01 20:20:26 +00:00
|
|
|
url 'http://pyropus.ca/software/memtester/old-versions/memtester-4.3.0.tar.gz'
|
|
|
|
sha1 'eff0e3020a7750bd5452b051526ad6439e92b9cd'
|
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
|