You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
483 B
21 lines
483 B
#!/bin/sh
|
|
set -eu
|
|
|
|
version_ant=1.9.16
|
|
|
|
dir_download="$PWD/download"
|
|
dir_files="$PWD/files"
|
|
mkdir -p build; cd build
|
|
dir_install="$PWD/install-ant"
|
|
|
|
# Prepare source
|
|
tar xf "$dir_download/apache-ant-$version_ant-src.tar.bz2"
|
|
cd "apache-ant-$version_ant"
|
|
patch -p1 -i "$dir_files/apache-ant-1.9.16-fix-java4.patch"
|
|
|
|
# Build and install
|
|
unset JAVAC JAVACMD CLASSPATH
|
|
export JAVA_HOME="$PWD/../install-gcc/lib/jvm"
|
|
export PATH="$JAVA_HOME/bin:$PATH"
|
|
./build.sh
|
|
cp -a dist "$dir_install"
|
|
|