2010-05-01 03:07:17 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Cppcheck < Formula
|
2010-07-28 10:35:21 +00:00
|
|
|
url 'http://downloads.sourceforge.net/project/cppcheck/cppcheck/1.44/cppcheck-1.44.tar.bz2'
|
2010-05-01 03:07:17 +00:00
|
|
|
homepage 'http://sourceforge.net/apps/mediawiki/cppcheck/index.php?title=Main_Page'
|
2010-07-28 10:35:21 +00:00
|
|
|
md5 'c8d24c0e7a3db99660f81b8a0568e050'
|
2010-05-01 03:07:17 +00:00
|
|
|
head 'git://github.com/danmar/cppcheck.git'
|
|
|
|
|
2010-07-13 15:07:57 +00:00
|
|
|
# Do not strip binaries, or else it fails to run.
|
2010-04-07 05:58:35 +00:00
|
|
|
skip_clean :all
|
2010-05-01 03:07:17 +00:00
|
|
|
|
2010-07-13 15:07:57 +00:00
|
|
|
def install
|
2010-05-01 03:07:17 +00:00
|
|
|
# Pass to make variables.
|
2010-07-13 15:07:57 +00:00
|
|
|
system "make"
|
|
|
|
system "make", "DESTDIR=#{prefix}", "BIN=#{bin}", "install"
|
2010-05-01 03:07:17 +00:00
|
|
|
# Man pages aren't installed, they require docbook schemas which I don't know how to install.
|
|
|
|
end
|
|
|
|
end
|