2014-04-19 18:55:57 +00:00
|
|
|
require "formula"
|
2011-09-29 03:11:06 +00:00
|
|
|
|
|
|
|
class Clhep < Formula
|
2014-04-19 18:55:57 +00:00
|
|
|
homepage "http://proj-clhep.web.cern.ch/proj-clhep/"
|
2014-05-14 04:46:46 +00:00
|
|
|
url "http://proj-clhep.web.cern.ch/proj-clhep/DISTRIBUTION/tarFiles/clhep-2.1.4.2.tgz"
|
|
|
|
sha1 "519a163d575d01fa29397bee88116389382088c9"
|
2011-09-29 03:11:06 +00:00
|
|
|
|
2014-04-19 18:55:57 +00:00
|
|
|
depends_on "cmake" => :build
|
|
|
|
|
2011-09-29 03:11:06 +00:00
|
|
|
def install
|
2014-04-19 18:55:57 +00:00
|
|
|
mkdir "clhep-build" do
|
2014-05-14 03:43:59 +00:00
|
|
|
system "cmake", "../CLHEP", *std_cmake_args
|
2011-09-29 03:11:06 +00:00
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|