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-12-27 03:17:12 -05:00
|
|
|
#
|
2018-10-07 13:52:23 -07:00
|
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
|
2016-01-25 10:26:35 -05:00
|
|
|
from spack import *
|
|
|
|
|
|
|
|
|
|
|
|
class Dtbuild2(Package):
|
|
|
|
"""Simple package which acts as a build dependency"""
|
|
|
|
|
|
|
|
homepage = "http://www.example.com"
|
|
|
|
url = "http://www.example.com/dtbuild2-1.0.tar.gz"
|
|
|
|
|
|
|
|
version('1.0', '0123456789abcdef0123456789abcdef')
|
|
|
|
|
|
|
|
def install(self, spec, prefix):
|
|
|
|
pass
|