26 lines
868 B
Python
26 lines
868 B
Python
# Copyright 2013-2020 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 *
|
|
|
|
|
|
class Cppad(CMakePackage):
|
|
"""A Package for Differentiation of C++ Algorithms."""
|
|
|
|
homepage = "https://www.coin-or.org/CppAD/"
|
|
url = "http://www.coin-or.org/download/source/CppAD/cppad-20170114.gpl.tgz"
|
|
git = "https://github.com/coin-or/CppAD.git"
|
|
|
|
version('develop', branch='master')
|
|
version('20170114', sha256='fa3980a882be2a668a7522146273a1b4f1d8dabe66ad4aafa8964c8c1fd6f957')
|
|
|
|
def cmake_args(self):
|
|
# This package does not obey CMAKE_INSTALL_PREFIX
|
|
args = [
|
|
"-Dcppad_prefix=%s" % (self.prefix),
|
|
"-Dcmake_install_docdir=share/cppad/doc"
|
|
]
|
|
return args
|