aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/clhep.rb
blob: 6c15be8d30c9d28355bd098b31982e3b8aea748e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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.2.2.tgz'
  sha1 '374340e316c192c211db36c4cd3f29407cc75318'

  depends_on 'cmake' => :build

  def install
    mkdir 'clhep-build' do
      system "cmake", "../CLHEP",
                      "-DCMAKE_PREFIX_PATH=#{prefix}",
                      *std_cmake_args
      system "make install"
    end
  end
end