Added googletest package.
This commit is contained in:
parent
11ca06b104
commit
9b130e1d19
1 changed files with 40 additions and 0 deletions
40
var/spack/repos/builtin/packages/googletest/package.py
Normal file
40
var/spack/repos/builtin/packages/googletest/package.py
Normal file
|
@ -0,0 +1,40 @@
|
|||
# FIXME:
|
||||
# This is a template package file for Spack. We've conveniently
|
||||
# put "FIXME" labels next to all the things you'll want to change.
|
||||
#
|
||||
# Once you've edited all the FIXME's, delete this whole message,
|
||||
# save this file, and test out your package like this:
|
||||
#
|
||||
# spack install googletest
|
||||
#
|
||||
# You can always get back here to change things with:
|
||||
#
|
||||
# spack edit googletest
|
||||
#
|
||||
# See the spack documentation for more information on building
|
||||
# packages.
|
||||
#
|
||||
from spack import *
|
||||
|
||||
class Googletest(Package):
|
||||
"""Google test framework for C++. Also called gtest."""
|
||||
homepage = "https://github.com/google/googletest"
|
||||
url = "https://github.com/google/googletest/tarball/release-1.7.0"
|
||||
|
||||
version('1.7.0', '5eaf03ed925a47b37c8e1d559eb19bc4')
|
||||
|
||||
depends_on("cmake")
|
||||
|
||||
def install(self, spec, prefix):
|
||||
which('cmake')('.', *std_cmake_args)
|
||||
|
||||
make()
|
||||
|
||||
# Google Test doesn't have a make install
|
||||
# We have to do our own install here.
|
||||
install_tree('include', prefix.include)
|
||||
|
||||
mkdirp(prefix.lib)
|
||||
install('./libgtest.a', '%s' % prefix.lib)
|
||||
install('./libgtest_main.a', '%s' % prefix.lib)
|
||||
|
Loading…
Reference in a new issue