blob: e9abaa8378035c6588f7da6a7e57c6b05ef6adbe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
  | 
require 'formula'
class Memtester < Formula
  url 'http://pyropus.ca/software/memtester/old-versions/memtester-4.2.1.tar.gz'
  homepage 'http://pyropus.ca/software/memtester/'
  md5 '070ced84da42060d65489e6dc1a4211a'
  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
  |