12345678910111213141516171819202122232425262728293031 |
- ##
- # This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild
- #
- # Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA
- # Authors:: Fotis Georgatos <fotis@cern.ch>
- # License:: MIT/GPL
- # $Id$
- #
- # This work implements a part of the HPCBIOS project and is a component of the policy:
- # http://hpcbios.readthedocs.org/en/latest/HPCBIOS_2012-90.html
- ##
- easyblock = 'ConfigureMake'
- name = 'NASM'
- version = '2.12.02'
- homepage = 'http://www.nasm.us/'
- description = """NASM: General-purpose x86 assembler"""
- toolchain = {'name': 'intel', 'version': '2018'}
- sources = [SOURCELOWER_TAR_BZ2]
- source_urls = ['http://www.nasm.us/pub/nasm/releasebuilds/%(version)s']
- sanity_check_paths = {
- 'files': ['bin/nasm'],
- 'dirs': [],
- }
- moduleclass = 'lang'
|