blob: e10463e05551fb9004b63b5a7aa21130f21af2a2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
require "formula"
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.1.4.2.tgz"
sha1 "519a163d575d01fa29397bee88116389382088c9"
depends_on "cmake" => :build
def install
mkdir "clhep-build" do
system "cmake", "../CLHEP", *std_cmake_args
system "make install"
end
end
end
|