summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/cppcodec/package.py
blob: 1cee1f9ad1e93fd858dd0e351372096a43085f31 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# Copyright 2013-2024 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.package import *


class Cppcodec(CMakePackage):
    """Header-only C++11 library to encode/decode base64, base64url, base32,
    base32hex and hex (a.k.a. base16) as specified in RFC 4648, plus
    Crockford's base32. MIT licensed with consistent, flexible API."""

    maintainers("vmiheer")
    homepage = "https://github.com/tplgy/cppcodec"
    url = "https://github.com/tplgy/cppcodec/archive/refs/tags/v0.2.tar.gz"

    license("MIT")

    version("0.2", sha256="0edaea2a9d9709d456aa99a1c3e17812ed130f9ef2b5c2d152c230a5cbc5c482")

    depends_on("cmake@2.8:", type="build")