summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-exodus-bundler/package.py
blob: 9123c9e0d4a872bcc45d1dd301615669679b6e21 (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
# 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 PyExodusBundler(PythonPackage):
    """Exodus is a tool that makes it easy to successfully relocate Linux
    ELF binaries from one system to another."""

    homepage = "https://github.com/intoli/exodus"
    pypi = "exodus-bundler/exodus-bundler-2.0.2.tar.gz"

    license("BSD-2-Clause-FreeBSD")

    version("2.0.2", sha256="4e896a2034b94cf7b4fb33d86a68e29a7d3b08e57541e444db34dddc6ac1ef68")

    depends_on("musl", type="run", when="%apple-clang")
    depends_on("musl", type="run", when="%clang")
    depends_on("musl", type="run", when="%gcc")
    depends_on("py-setuptools", type=("build", "run"))