
This patch adds license information for about 5,300 packages from automated sources. The license information was obtained from Alpine Linux and PyPI and processed using tooling available in https://github.com/boomanaiden154/spack-license-utils. The license field was added in after all other directives in an automated fashion. Note that while this license information is probably fairly accurate, it is not guaranteed to be accurate. In addition some of the license strings from Alpine Linux might not be valid SPDX license strings. Invalid SPDX identifiers can be picked up and fixed once we have validation/parsing infrastructure in place for the solver, and issues can be fixed as they come up.
22 lines
707 B
Python
22 lines
707 B
Python
# 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 Mbdyn(AutotoolsPackage):
|
|
"""MBDyn is the first and possibly the only free general purpose
|
|
multibody dynamics analysis software."""
|
|
|
|
homepage = "https://www.mbdyn.org/"
|
|
url = "https://www.mbdyn.org/userfiles/downloads/mbdyn-1.7.3.tar.gz"
|
|
|
|
license("GPL-2.0-or-later")
|
|
|
|
version("1.7.3", sha256="3cf05cd1cb14c1af3d987aac119b6ecf0d835bc1aee06bc4cf7cc5a245c1f36d")
|
|
|
|
# Failed to build mbdyn with gcc@4.8.5 and gcc@9.2.0
|
|
conflicts("%gcc@:5.0,9.0:")
|