diff --git a/easybuild/easyconfigs/j/Jena/Jena-4.10.0.eb b/easybuild/easyconfigs/j/Jena/Jena-4.10.0.eb new file mode 100644 index 00000000000..dafc0318190 --- /dev/null +++ b/easybuild/easyconfigs/j/Jena/Jena-4.10.0.eb @@ -0,0 +1,39 @@ +# Contribution from the SIB Swiss Institute of Bioinformatics +# uploaded by S. Moretti + +easyblock = 'PackedBinary' + +name = 'Jena' +version = '4.10.0' + +homepage = 'https://jena.apache.org/' +description = """A free and open source Java framework for building Semantic +Web and Linked Data applications. +""" +# software_license = 'LicenseApachev2' + +toolchain = SYSTEM + +dependencies = [ + ('Java', '11'), +] + +source_urls = ['https://dlcdn.apache.org/jena/binaries/'] +sources = ['apache-jena-%(version)s.tar.gz'] +checksums = ['1b690287917659fad2382afe7c43b4da694e4957d5d8ecb7b9918d11aacb47e3'] + +postinstallcmds = [ + 'rm -rf %(installdir)s/bat/ %(installdir)s/lib-src/', + 'rm -rf %(installdir)s/src-examples/', +] + +sanity_check_paths = { + 'files': ['bin/riot'], + 'dirs': ['lib/'], +} + +sanity_check_commands = [ + "riot --help", +] + +moduleclass = 'devel'