From: Joey Hess Date: Tue, 14 Jul 2009 21:39:31 +0000 (-0400) Subject: forgot to add ant.pm X-Git-Tag: 7.3.3 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=7e6fa05d461f065c166fa87c3a0a13d213c2b46f;p=debhelper.git forgot to add ant.pm --- diff --git a/Debian/Debhelper/Buildsystem/ant.pm b/Debian/Debhelper/Buildsystem/ant.pm new file mode 100644 index 0000000..26bee95 --- /dev/null +++ b/Debian/Debhelper/Buildsystem/ant.pm @@ -0,0 +1,37 @@ +# A debhelper build system class for handling Ant based projects. +# +# Copyright: © 2009 Joey Hess +# License: GPL-2+ + +package Debian::Debhelper::Buildsystem::ant; + +use strict; +use base 'Debian::Debhelper::Buildsystem'; + +sub DESCRIPTION { + "Ant (build.xml)" +} + +sub check_auto_buildable { + my $this=shift; + return -e $this->get_sourcepath("build.xml"); +} + +sub new { + my $class=shift; + my $this=$class->SUPER::new(@_); + $this->enforce_in_source_building(); + return $this; +} + +sub build { + my $this=shift; + $this->doit_in_sourcedir("ant", @_); +} + +sub clean { + my $this=shift; + $this->doit_in_sourcedir("ant", "clean", @_); +} + +1