aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/tmpreaper.rb
blob: aff4b6388fca3f20c940eb822cc9165faa1be036 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
require 'formula'

class Tmpreaper <Formula
  url 'http://mirrors.kernel.org/debian/pool/main/t/tmpreaper/tmpreaper_1.6.13+nmu1.tar.gz'
  homepage 'http://packages.debian.org/tmpreaper'
  md5 '36bffb38fbdd28b9de8af229faabf5fe'
  version '1.6.13_nmu1'

  def install
    system "./configure", "--prefix=#{prefix}"
    system "make install"
  end
end