2010-07-19 14:05:54 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class StyleCheck < Formula
|
|
|
|
homepage 'http://www.cs.umd.edu/~nspring/software/style-check-readme.html'
|
2012-02-13 05:39:09 +00:00
|
|
|
url 'http://www.cs.umd.edu/~nspring/software/style-check-0.14.tar.gz'
|
2012-09-03 18:33:56 +00:00
|
|
|
sha1 '7308ba19fb05a84e2a8cad935b8056feba63d83b'
|
2010-07-19 14:05:54 +00:00
|
|
|
|
|
|
|
def install
|
2012-02-13 05:39:09 +00:00
|
|
|
inreplace "style-check.rb", '/etc/style-check.d/', etc+'style-check.d/'
|
|
|
|
system "make", "PREFIX=#{prefix}",
|
|
|
|
"SYSCONFDIR=#{etc}/style-check.d",
|
|
|
|
"install"
|
2010-07-19 14:05:54 +00:00
|
|
|
end
|
|
|
|
end
|