summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/azcopy/package.py
blob: 9aad1f4d9d6914d0c4bf74d0a119d723e7b86508 (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-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 Azcopy(Package):
    """AzCopy is a command-line utility that you can use to copy data to and from containers and
    file shares in Azure Storage accounts.
    """

    homepage = "https://github.com/Azure/azure-storage-azcopy"
    url = "https://github.com/Azure/azure-storage-azcopy/archive/refs/tags/v10.18.1.tar.gz"

    license("MIT")

    version("10.19.0", sha256="33ce1539b56a4e9a38140374630bd9640157bb44d0c57b3224a5e5f592ab5399")
    version("10.18.1", sha256="80292625d7f1a6fc41688c5948b3a20cfdae872464d37d831e20999430819c3f")

    depends_on("go", type="build")

    def install(self, spec, prefix):
        go("build", "-o", prefix.bin.azcopy)