
- [x] add `concretize.lp`, `spack.yaml`, etc. to licensed files - [x] update all licensed files to say 2013-2021 using `spack license update-copyright-year` - [x] appease mypy with some additions to package.py that needed for oneapi.py
21 lines
797 B
Python
21 lines
797 B
Python
# 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 Capstone(CMakePackage):
|
|
"""Capstone is a lightweight multi-platform,
|
|
multi-architecture disassembly framework."""
|
|
|
|
homepage = "http://www.capstone-engine.org/"
|
|
url = "https://github.com/aquynh/capstone/archive/4.0.1.tar.gz"
|
|
git = "https://github.com/aquynh/capstone.git"
|
|
|
|
version('next', branch='next')
|
|
version('master', branch='master')
|
|
version('4.0.2', sha256='7c81d798022f81e7507f1a60d6817f63aa76e489aa4e7055255f21a22f5e526a')
|
|
version('4.0.1', sha256='79bbea8dbe466bd7d051e037db5961fdb34f67c9fac5c3471dd105cfb1e05dc7')
|