summaryrefslogtreecommitdiffstats
path: root/extra/ant/Pkgfile
diff options
context:
space:
mode:
Diffstat (limited to 'extra/ant/Pkgfile')
-rw-r--r--extra/ant/Pkgfile30
1 files changed, 30 insertions, 0 deletions
diff --git a/extra/ant/Pkgfile b/extra/ant/Pkgfile
new file mode 100644
index 000000000..9728cc13b
--- /dev/null
+++ b/extra/ant/Pkgfile
@@ -0,0 +1,30 @@
+# Description: Outils basés sur Java
+# URL: http://ant.apache.org/
+# Maintainer: NutyX core team
+# Packager: thierryn1 at hispeed dot ch
+# Depends on: jdk, junit
+
+name=ant
+version=1.7.1
+release=1
+source=(http://apache.org/dist/ant/source/apache-ant-$version-src.tar.bz2\
+ apache-ant.sh)
+
+
+build() {
+ export CLASSPATH=$CLASSPATH:/usr/share/junit-4.5/junit-4.5.jar:/usr/share/junit-4.5
+ cd apache-ant-$version
+ sed -i 's|/etc/ant.conf|/etc/ant/ant.conf|' src/script/ant
+ mkdir dist
+ ./build.sh -Ddist.dir=dist/ dist
+ mkdir $PKG/opt
+ mkdir -p $PKG/etc/{profile.d,ant}
+ touch $PKG/etc/ant/ant.conf
+ export ANT_HOME=$PKG/opt/ant-$version
+# export JAVA_HOME=/opt/jdk
+ ./build.sh install-lite
+ install -m644 ../apache-ant.sh $PKG/etc/profile.d/
+ ln -svf ant-$version $PKG/opt/$name
+ ln -v -sf /etc/$name $PKG/opt/$name-$version/etc
+}
+