2019-12-30 22:36:56 -08:00
|
|
|
# Copyright 2013-2020 Lawrence Livermore National Security, LLC and other
|
2018-10-07 13:52:23 -07:00
|
|
|
# Spack Project Developers. See the top-level COPYRIGHT file for details.
|
2016-05-11 21:22:25 -07:00
|
|
|
#
|
2018-10-07 13:52:23 -07:00
|
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
|
2014-12-25 16:09:42 -08:00
|
|
|
from spack import *
|
|
|
|
|
2016-08-10 01:50:00 -07:00
|
|
|
|
2017-01-18 12:34:09 -06:00
|
|
|
class Yasm(AutotoolsPackage):
|
2014-12-25 16:09:42 -08:00
|
|
|
"""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."""
|
2018-07-24 20:52:35 -05:00
|
|
|
|
2014-12-25 16:09:42 -08:00
|
|
|
homepage = "http://yasm.tortall.net"
|
|
|
|
url = "http://www.tortall.net/projects/yasm/releases/yasm-1.3.0.tar.gz"
|
2018-07-24 20:52:35 -05:00
|
|
|
git = "https://github.com/yasm/yasm.git"
|
2014-12-25 16:09:42 -08:00
|
|
|
|
2018-07-24 21:08:43 -05:00
|
|
|
version('develop', branch='master')
|
2019-10-10 22:44:41 -07:00
|
|
|
version('1.3.0', sha256='3dce6601b495f5b3d45b59f7d2492a340ee7e84b5beca17e48f862502bd5603f')
|
2018-07-15 15:54:13 -05:00
|
|
|
|
|
|
|
depends_on('autoconf', when='@develop')
|
|
|
|
depends_on('automake', when='@develop')
|
|
|
|
depends_on('libtool', when='@develop')
|
|
|
|
depends_on('m4', when='@develop')
|