2022-07-29 17:25:32 +02:00
|
|
|
Apache Ant is a Java library and command-line tool that help
|
|
|
|
building software.
|
2010-05-11 20:00:21 +02:00
|
|
|
|
2020-10-13 02:49:15 +02:00
|
|
|
Ant is extended using Java classes. The configuration files are
|
|
|
|
XML-based, calling out a target tree where tasks get executed. Each
|
|
|
|
task is run by an object that implements a Task interface.
|
2010-05-13 00:24:13 +02:00
|
|
|
|
2020-10-13 02:49:15 +02:00
|
|
|
This package is using upstream's recommendation of
|
|
|
|
ANT_HOME=/usr/share/ant
|
2016-10-26 16:58:05 +02:00
|
|
|
|
2020-10-13 02:49:15 +02:00
|
|
|
apache-ant uses `javac` and friends to compile java projects. If you
|
|
|
|
use the stock 'gcc-java' package, then you will need to export the
|
2019-10-05 00:52:55 +02:00
|
|
|
JAVA_HOME environment variable, and make it point to the Java5 run-time
|
|
|
|
provided by the GNU Compiler Collection, e.g.:
|
|
|
|
|
|
|
|
export JAVA_HOME=/usr/lib/jvm (for Slackware, 32-bit)
|
|
|
|
|
|
|
|
or:
|
|
|
|
|
|
|
|
export JAVA_HOME=/usr/lib64/jvm (for Slackware64)
|
|
|
|
|
|
|
|
If you need a more recent Java run-time, then any of the jdk or openjdk
|
|
|
|
packages from slackbuilds.org will work just fine.
|