23 lines
764 B
Python
23 lines
764 B
Python
# Copyright 2013-2019 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 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"
|
|
|
|
version('2.9.1', 'c3dd67d8cde8a65c2e994e2ede4439a2')
|
|
|
|
depends_on('boost')
|
|
|
|
root_cmakelists_dir = 'Release'
|