From 96af3748414d2cf620faa2f001d261a0c04adff9 Mon Sep 17 00:00:00 2001 From: Jens Henrik Goebbert <j.goebbert@fz-juelich.de> Date: Sat, 4 Feb 2023 08:19:03 +0100 Subject: [PATCH] initial commit --- Golden_Repo/a/ant/ant-1.10.13-Java-19.eb | 27 ++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 Golden_Repo/a/ant/ant-1.10.13-Java-19.eb diff --git a/Golden_Repo/a/ant/ant-1.10.13-Java-19.eb b/Golden_Repo/a/ant/ant-1.10.13-Java-19.eb new file mode 100644 index 000000000..e23a3cd90 --- /dev/null +++ b/Golden_Repo/a/ant/ant-1.10.13-Java-19.eb @@ -0,0 +1,27 @@ +easyblock = 'PackedBinary' + +name = 'ant' +version = '1.10.13' +versionsuffix = '-Java-%(javaver)s' + +homepage = 'https://ant.apache.org/' +description = """Apache Ant is a Java library and command-line tool whose mission is to drive processes described in + build files as targets and extension points dependent upon each other. The main known usage of Ant is the build of + Java applications.""" + +toolchain = SYSTEM + +source_urls = ['https://archive.apache.org/dist/ant/binaries/'] +sources = ['apache-%(name)s-%(version)s-bin.tar.gz'] +checksums = ['776be4a5704158f00ef3f23c0327546e38159389bc8f39abbfe114913f88bab1'] + +dependencies = [('Java', '19')] + +sanity_check_paths = { + 'files': ['bin/ant', 'lib/ant.jar'], + 'dirs': [], +} + +modextravars = {'ANT_HOME': '%(installdir)s'} + +moduleclass = 'devel' -- GitLab