aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/style-check.rb
blob: 3114d31dfa35bfc2cebd3c00baf179e12701e73c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
require 'formula'

class StyleCheck < Formula
  homepage 'http://www.cs.umd.edu/~nspring/software/style-check-readme.html'
  url 'http://www.cs.umd.edu/~nspring/software/style-check-0.14.tar.gz'
  sha1 '7308ba19fb05a84e2a8cad935b8056feba63d83b'

  def install
    inreplace "style-check.rb", '/etc/style-check.d/', etc+'style-check.d/'
    system "make", "PREFIX=#{prefix}",
                   "SYSCONFDIR=#{etc}/style-check.d",
                   "install"
  end
end