2019-12-31 14:36:56 +08:00
|
|
|
# Copyright 2013-2020 Lawrence Livermore National Security, LLC and other
|
2018-10-08 04:52:23 +08:00
|
|
|
# Spack Project Developers. See the top-level COPYRIGHT file for details.
|
2017-05-23 04:15:17 +08:00
|
|
|
#
|
2018-10-08 04:52:23 +08:00
|
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
|
2017-05-23 04:15:17 +08:00
|
|
|
from spack import *
|
|
|
|
|
|
|
|
|
|
|
|
class Cpprestsdk(CMakePackage):
|
|
|
|
"""The C++ REST SDK is a Microsoft project for cloud-based client-server
|
|
|
|
communication in native code using a modern asynchronous C++ API design.
|
|
|
|
This project aims to help C++ developers connect to and interact with
|
|
|
|
services. """
|
|
|
|
|
|
|
|
homepage = "https://github.com/Microsoft/cpprestsdk"
|
|
|
|
url = "https://github.com/Microsoft/cpprestsdk/archive/v2.9.1.tar.gz"
|
|
|
|
|
2019-10-12 16:49:54 +08:00
|
|
|
version('2.9.1', sha256='537358760acd782f4d2ed3a85d92247b4fc423aff9c85347dc31dbb0ab9bab16')
|
2017-05-23 04:15:17 +08:00
|
|
|
|
|
|
|
depends_on('boost')
|
|
|
|
|
2017-07-19 00:58:19 +08:00
|
|
|
root_cmakelists_dir = 'Release'
|