summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/yasm/package.py
blob: 4c2f9ae8b690a4474189345c3a18a80ce119b562 (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
26
27
# 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 Yasm(AutotoolsPackage):
    """Yasm is a complete rewrite of the NASM-2.11.06 assembler. It
    supports the x86 and AMD64 instruction sets, accepts NASM and
    GAS assembler syntaxes and outputs binary, ELF32 and ELF64
    object formats."""

    homepage = "https://yasm.tortall.net"
    url = "https://www.tortall.net/projects/yasm/releases/yasm-1.3.0.tar.gz"
    git = "https://github.com/yasm/yasm.git"

    license("BSD-2-Clause")

    version("develop", branch="master")
    version("1.3.0", sha256="3dce6601b495f5b3d45b59f7d2492a340ee7e84b5beca17e48f862502bd5603f")

    depends_on("autoconf", when="@develop")
    depends_on("automake", when="@develop")
    depends_on("libtool", when="@develop")
    depends_on("m4", when="@develop")