blob: e34f985c59ec7dfa702e4125924b4c0dd7f1d9f0 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
 | require 'formula'
class Tmpreaper < Formula
  url 'http://mirrors.kernel.org/debian/pool/main/t/tmpreaper/tmpreaper_1.6.13+nmu1.tar.gz'
  mirror 'http://ftp.us.debian.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
 |