36 lines
898 B
Plaintext
36 lines
898 B
Plaintext
# Description: Ant package is a Java-based build tool.
|
|
# URL: http://ant.apache.org/
|
|
# Maintainer: - http://ant.apache.org/contributors.html
|
|
# Packager: pierre at nutyx dot org
|
|
# Depends on: glib openjdk
|
|
|
|
name=apache-ant
|
|
version=1.9.6
|
|
release=1
|
|
|
|
source=(http://archive.apache.org/dist/ant/source/$name-$version-src.tar.bz2
|
|
http://hamcrest.googlecode.com/files/hamcrest-1.3.tgz
|
|
http://anduin.linuxfromscratch.org/sources/other/junit-4.11.jar)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
|
|
mv ../hamcrest-1.3 .
|
|
cp -v ../junit-4.11.jar \
|
|
hamcrest-1.3/hamcrest-core-1.3.jar lib/optional
|
|
|
|
mkdir -p $PKG/opt/ant-$version
|
|
./build.sh -Ddist.dir=$PKG/opt/ant-$version dist
|
|
mkdir -p $PKG/etc/profile.d
|
|
ln -v -sf ant-$version $PKG/opt/ant
|
|
cat > $PKG/etc/profile.d/ant.sh << "EOF"
|
|
# Beginof /etc/profile.d/ant.sh
|
|
|
|
# Adjust the path
|
|
pathappend /opt/ant/bin
|
|
export ANT_HOME=/opt/ant
|
|
|
|
# End of /etc/profile.d/ant.sh
|
|
EOF
|
|
}
|