forked from easybuilders/easybuild-easyconfigs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
adding easyconfigs: ant-1.10.14-Java-21.eb
- Loading branch information
1 parent
54a6569
commit 044c6c2
Showing
1 changed file
with
27 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
easyblock = 'PackedBinary' | ||
|
||
name = 'ant' | ||
version = '1.10.14' | ||
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 = ['e2852fddaaddc1ab76a099ca0d7b2ee47a907b8a91a64f70f6aa9e6a3d0dd504'] | ||
|
||
dependencies = [('Java', '21')] | ||
|
||
sanity_check_paths = { | ||
'files': ['bin/ant', 'lib/ant.jar'], | ||
'dirs': [], | ||
} | ||
|
||
modextravars = {'ANT_HOME': '%(installdir)s'} | ||
|
||
moduleclass = 'devel' |