48 lines
1.3 KiB
Bash
48 lines
1.3 KiB
Bash
# Template file for 'apache-ant'
|
|
pkgname="apache-ant"
|
|
version=1.10.5
|
|
revision=1
|
|
short_desc="Java library and command-line tool that help building software"
|
|
maintainer="Enno Boland <gottox@voidlinux.eu>"
|
|
license="Apache License"
|
|
homepage="http://ant.apache.org"
|
|
distfiles="http://mirror.dkd.de/apache/ant/source/apache-ant-${version}-src.tar.xz"
|
|
checksum=ec7c704e22a2b0167e1ff35cc3d4198267e6489f142aa3e9da1b7fe6e39ff53d
|
|
hostmakedepends="openjdk"
|
|
depends="virtual?java-runtime"
|
|
noarch="yes"
|
|
nocross=yes
|
|
_prefix=usr/share/apache-ant
|
|
|
|
do_configure() {
|
|
# Disable tests
|
|
sed -i 's/jars,test-jar/jars/' build.xml
|
|
export JAVA_HOME=/usr/lib/jvm/openjdk
|
|
./bootstrap.sh
|
|
bootstrap/bin/ant -Ddest=optional -f fetch.xml
|
|
}
|
|
do_build() {
|
|
export JAVA_HOME=/usr/lib/jvm/openjdk
|
|
bootstrap/bin/ant -Ddist.dir=$DESTDIR/$_prefix jars
|
|
}
|
|
do_install() {
|
|
export JAVA_HOME=/usr/lib/jvm/openjdk
|
|
bootstrap/bin/ant -Ddist.dir=$DESTDIR/$_prefix dist
|
|
|
|
vinstall ${FILESDIR}/apache-ant.sh 644 etc/profile.d
|
|
rm $DESTDIR/$_prefix/bin/*.bat
|
|
rm $DESTDIR/$_prefix/bin/*.cmd
|
|
|
|
vmkdir usr/bin
|
|
ln -rs $DESTDIR/$_prefix/bin/ant $DESTDIR/usr/bin
|
|
}
|
|
|
|
apache-ant-doc_package() {
|
|
short_desc+=" - documentation"
|
|
depends="${sourcepkg}>=${version}_${revision}"
|
|
noarch="yes"
|
|
pkg_install() {
|
|
vmove $_prefix/manual
|
|
}
|
|
}
|