Linux cpanel.rrshost.in 5.15.0-25-generic #25-Ubuntu SMP Wed Mar 30 15:54:22 UTC 2022 x86_64
Apache
: 109.123.238.221 | : 108.162.216.88
128 Domain
8.2.28
aev999
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
share /
perl5 /
Debian /
Debhelper /
Buildsystem /
[ HOME SHELL ]
Name
Size
Permission
Action
ant.pm
1.03
KB
-rw-r--r--
autoconf.pm
2.56
KB
-rw-r--r--
cmake.pm
5.55
KB
-rw-r--r--
makefile.pm
5.67
KB
-rw-r--r--
meson.pm
3.54
KB
-rw-r--r--
ninja.pm
1.68
KB
-rw-r--r--
perl_build.pm
2.25
KB
-rw-r--r--
perl_makemaker.pm
2.63
KB
-rw-r--r--
python_distutils.pm
5.45
KB
-rw-r--r--
qmake.pm
2.44
KB
-rw-r--r--
qmake_qt4.pm
220
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : ant.pm
# 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 warnings; use parent qw(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; my $d_ant_prop = $this->get_sourcepath('debian/ant.properties'); my @args; if ( -f $d_ant_prop ) { push(@args, '-propertyfile', $d_ant_prop); } # Set the username to improve the reproducibility push(@args, "-Duser.name", "debian"); $this->doit_in_sourcedir("ant", @args, @_); } sub clean { my $this=shift; my $d_ant_prop = $this->get_sourcepath('debian/ant.properties'); my @args; if ( -f $d_ant_prop ) { push(@args, '-propertyfile', $d_ant_prop); } $this->doit_in_sourcedir("ant", @args, "clean", @_); } 1
Close