summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/utf8cpp/package.py
blob: 930825dcbaceb3f2a527aa4fab8bda0209626389 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# Copyright 2013-2023 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 Utf8cpp(Package):
    """A simple, portable and lightweight generic library for handling UTF-8
    encoded strings."""

    homepage = "http://utfcpp.sourceforge.net/"

    version("2.3.4", sha256="3373cebb25d88c662a2b960c4d585daf9ae7b396031ecd786e7bb31b15d010ef")

    def url_for_version(self, version):
        url = (
            "https://sourceforge.net/projects/utfcpp/files/utf8cpp_2x/Release%20{0}/utf8_v{1}.zip"
        )
        return url.format(version, version.underscored)

    def install(self, spec, prefix):
        install_tree("doc", prefix.share.doc)
        install_tree("source", prefix.include)