tree: 2.0.2 (#31362)

This commit is contained in:
Harmen Stoppels 2022-06-29 13:06:38 +02:00 committed by GitHub
parent a98806bd9b
commit 768d3504dd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -19,19 +19,17 @@ class Tree(Package):
homepage = "http://mama.indstate.edu/users/ice/tree/"
url = "http://mama.indstate.edu/users/ice/tree/src/tree-1.7.0.tgz"
version('2.0.2', sha256='7d693a1d88d3c4e70a73e03b8dbbdc12c2945d482647494f2f5bd83a479eeeaf')
version('1.8.0', sha256='715d5d4b434321ce74706d0dd067505bb60c5ea83b5f0b3655dae40aa6f9b7c2')
version('1.7.0', sha256='6957c20e82561ac4231638996e74f4cfa4e6faabc5a2f511f0b4e3940e8f7b12')
@when('@2:')
def install(self, spec, prefix):
objs = [
'tree.o',
'unix.o',
'html.o',
'xml.o',
'json.o',
'hash.o',
'color.o'
]
make('install', 'PREFIX=%s' % prefix)
@when('@:1')
def install(self, spec, prefix):
objs = ['tree.o', 'unix.o', 'html.o', 'xml.o', 'json.o', 'hash.o', 'color.o']
# version 1.8.0 added file.c
if spec.version >= Version('1.8.0'):
objs.append('file.o')