14 lines
305 B
Python
14 lines
305 B
Python
![]() |
from spack import *
|
||
|
|
||
|
|
||
|
class Dtlink5(Package):
|
||
|
"""Simple package which acts as a link dependency"""
|
||
|
|
||
|
homepage = "http://www.example.com"
|
||
|
url = "http://www.example.com/dtlink5-1.0.tar.gz"
|
||
|
|
||
|
version('1.0', '0123456789abcdef0123456789abcdef')
|
||
|
|
||
|
def install(self, spec, prefix):
|
||
|
pass
|