21 lines
625 B
Ruby
21 lines
625 B
Ruby
class Clhep < Formula
|
|
homepage "http://proj-clhep.web.cern.ch/proj-clhep/"
|
|
url "http://proj-clhep.web.cern.ch/proj-clhep/DISTRIBUTION/tarFiles/clhep-2.2.0.4.tgz"
|
|
sha1 "60a291b940fdc78bea4aaeaffc147cc25a42cfef"
|
|
|
|
bottle do
|
|
cellar :any
|
|
sha1 "5466fbee57b366a41bbcec814614ee236e39bed8" => :yosemite
|
|
sha1 "bde270764522e4a1d99767ca759574a99485e5ac" => :mavericks
|
|
sha1 "e77d0e5f516cb41ac061e1050c8f37d0fb65b796" => :mountain_lion
|
|
end
|
|
|
|
depends_on "cmake" => :build
|
|
|
|
def install
|
|
mkdir "clhep-build" do
|
|
system "cmake", "../CLHEP", *std_cmake_args
|
|
system "make", "install"
|
|
end
|
|
end
|
|
end
|