milis/talimatname/genel/apache-ant/talimat

34 lines
831 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# Description: Ant paketi Java tabanlı bir inşa aracıdır.
# URL: http://ant.apache.org/
# Packager: milisarge
# 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
}