blob: 5ef025a35269ae087ddd1d6f9f403327aafc01a8 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
 | require 'formula'
class Pmccabe < Formula
  homepage 'http://packages.debian.org/stable/pmccabe'
  url 'http://ftp.de.debian.org/debian/pool/main/p/pmccabe/pmccabe_2.6.tar.gz'
  sha1 '6e1378b28faf822339780829f3cb9e2d897c5c4d'
  def install
    ENV.append_to_cflags '-D__unix'
    system "make"
    bin.install 'pmccabe', 'codechanges', 'decomment', 'vifn'
    man1.install Dir['*.1']
  end
end
 |