Files
spack/var/spack/repos/builtin.mock/packages/callpath/package.py

27 lines
775 B
Python
Raw Normal View History

2022-01-12 11:21:41 -08:00
# Copyright 2013-2022 Lawrence Livermore National Security, LLC and other
# Spack Project Developers. See the top-level COPYRIGHT file for details.
#
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
from spack import *
2016-08-10 01:50:00 -07:00
class Callpath(Package):
homepage = "https://github.com/tgamblin/callpath"
url = "http://github.com/tgamblin/callpath-1.0.tar.gz"
version(0.8, '0123456789abcdef0123456789abcdef')
version(0.9, '0123456789abcdef0123456789abcdef')
version(1.0, '0123456789abcdef0123456789abcdef')
depends_on("dyninst")
depends_on("mpi")
2013-12-25 17:19:51 -08:00
def install(self, spec, prefix):
configure("--prefix=%s" % prefix)
make()
make("install")
def setup_environment(self, senv, renv):
renv.set('FOOBAR', self.name)