summaryrefslogtreecommitdiff
path: root/Debian/Debhelper/Buildsystem/ant.pm
blob: 52def4f61277aa0b67db46956586aa14ba028fd5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
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")) ? 1 : 0;
}

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