34 lines
831 B
Plaintext
34 lines
831 B
Plaintext
# 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
|
||
}
|