aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Library/Formula/style-check.rb13
1 files changed, 5 insertions, 8 deletions
diff --git a/Library/Formula/style-check.rb b/Library/Formula/style-check.rb
index 66e773971..ad3c34c17 100644
--- a/Library/Formula/style-check.rb
+++ b/Library/Formula/style-check.rb
@@ -1,17 +1,14 @@
require 'formula'
class StyleCheck < Formula
- url 'http://www.cs.umd.edu/~nspring/software/style-check-0.14.tar.gz'
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'
md5 'b88b0632b80abf9c8aaa2c5f2c3e2934'
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"
+ inreplace "style-check.rb", '/etc/style-check.d/', etc+'style-check.d/'
+ system "make", "PREFIX=#{prefix}",
+ "SYSCONFDIR=#{etc}/style-check.d",
+ "install"
end
end