blob: 70730d5c405d4117336c4d12418bd1912ccdc80f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
require 'formula'
class Guilt < Formula
homepage 'http://www.kernel.org/pub/linux/kernel/people/jsipek/guilt/man/'
url 'http://www.kernel.org/pub/linux/kernel/people/jsipek/guilt/guilt-0.33.tar.bz2'
mirror 'http://www.mirrorservice.org/sites/ftp.kernel.org/pub/linux/kernel/people/jsipek/guilt/guilt-0.33.tar.bz2'
md5 'de2d3b82d3e08c8c6a940bd31f47d758'
def install
# Skip the documentation, it depends on xmlto.
system "make", "PREFIX=#{prefix}", "install"
end
end
|