summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/yasm/package.py
blob: e881f65949123db739cf415123d0e2c8a3de58d4 (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-2021 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 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      = "http://www.tortall.net/projects/yasm/releases/yasm-1.3.0.tar.gz"
    git      = "https://github.com/yasm/yasm.git"

    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')