43 lines
1.1 KiB
Text
43 lines
1.1 KiB
Text
# Template file for 'apache-ant'
|
|
pkgname="apache-ant"
|
|
version="1.9.4"
|
|
revision=5
|
|
short_desc="Java library and command-line tool that help building software"
|
|
maintainer="Enno Boland <eb@s01.de>"
|
|
license="Apache License"
|
|
homepage="http://ant.apache.org"
|
|
distfiles="http://mirror.dkd.de/apache/ant/source/apache-ant-${version}-src.tar.bz2"
|
|
checksum="ac594ff7dcd461ebb3e607493af7682f84b1ceaa0621e17ec6367b8d2c410a1c"
|
|
hostmakedepends="openjdk"
|
|
depends="virtual?java-runtime"
|
|
noarch="yes"
|
|
_prefix=usr/share/apache-ant
|
|
|
|
do_configure() {
|
|
# Disable tests
|
|
sed -i 's/jars,test-jar/jars/' build.xml
|
|
}
|
|
do_build() {
|
|
export JAVA_HOME=/usr/lib/jvm/openjdk
|
|
./build.sh -Ddist.dir=$DESTDIR/$_prefix jars
|
|
}
|
|
do_install() {
|
|
export JAVA_HOME=/usr/lib/jvm/openjdk
|
|
./build.sh -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
|
|
}
|
|
}
|