1234567891011121314151617181920 |
- # Contribution from the Crick HPC team
- # uploaded by J. Sassmannshausen
- name = 'Java'
- version = '1.8.0_212'
- homepage = 'http://java.com/'
- description = """Java Platform, Standard Edition (Java SE) lets you develop and deploy
- Java applications on desktops and servers."""
- toolchain = {'name': 'dummy', 'version': 'dummy'}
- # download the tar.gz directly from
- # http://www.oracle.com/technetwork/java/javase/downloads/index.html
- (vp, vs) = version.split('_')
- altver = '%su%s' % (vp.split('.')[1], vs)
- sources = ['jdk-%s-linux-x64.tar.gz' % altver]
- checksums = ['62d57a7550c97b534343443475d9afd9']
- moduleclass = 'lang'
|