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

class StyleCheck < Formula
  url 'http://www.cs.umd.edu/~nspring/software/style-check-0.13.tar.gz'
  homepage 'http://www.cs.umd.edu/~nspring/software/style-check-readme.html'
  md5 '60eab1aa903217455dcd0f8997949c94'

  def install
    inreplace "Makefile" do |s|
      s.change_make_var! 'PREFIX', prefix
      s.change_make_var! 'SYSCONFDIR', (etc+'style-check.d')
    end
    inreplace "style-check.rb", '/etc/style-check.d/', (etc+'style-check.d/')

    system "make install"
  end
end