Add support for an older version of STAR (#4385)

What the user wants, the user etc....

Add info for STAR@2.4.2a.  It's URL looks different, so added a URL for
it.  This broke the URL for the current version, so added a URL for it
also (known bug).

*Minimally* tested on CentOS 7.
This commit is contained in:
George Hartzell 2017-05-29 13:47:31 -07:00 committed by Adam J. Stewart
parent 62daeaa525
commit e31f80988c

View File

@ -31,7 +31,10 @@ class Star(Package):
homepage = "https://github.com/alexdobin/STAR"
url = "https://github.com/alexdobin/STAR/archive/2.5.3a.tar.gz"
version('2.5.3a', 'baf8d1b62a50482cfa13acb7652dc391')
version('2.5.3a', 'baf8d1b62a50482cfa13acb7652dc391',
url='https://github.com/alexdobin/STAR/archive/2.5.3a.tar.gz')
version('2.4.2a', '8b9345f2685a5ec30731e0868e86d506',
url='https://github.com/alexdobin/STAR/archive/STAR_2.4.2a.tar.gz')
def install(self, spec, prefix):
with working_dir('source'):