summaryrefslogtreecommitdiffstats
path: root/bin/templ/perl-pkg
diff options
context:
space:
mode:
authorJustin Davis <jrcd83@gmail.com>2011-10-08 17:58:41 +0200
committerJustin Davis <jrcd83@gmail.com>2011-10-08 17:58:41 +0200
commite8e5cef0627ba2db59d73e35cca2b6639d6e1f45 (patch)
tree47473e08630f2ffeafec0be88ee4bec67bf39902 /bin/templ/perl-pkg
parentb51a7fcdc4be35bba00d2f2dc45bccf1cffe0ebf (diff)
downloadgenpkg-e8e5cef0627ba2db59d73e35cca2b6639d6e1f45.tar.gz
genpkg-e8e5cef0627ba2db59d73e35cca2b6639d6e1f45.tar.xz
Start changing style of perl-pkg. Use tabs for data indent.
Diffstat (limited to 'bin/templ/perl-pkg')
-rwxr-xr-xbin/templ/perl-pkg23
1 files changed, 11 insertions, 12 deletions
diff --git a/bin/templ/perl-pkg b/bin/templ/perl-pkg
index 790a798..e29ba05 100755
--- a/bin/templ/perl-pkg
+++ b/bin/templ/perl-pkg
@@ -3,18 +3,17 @@
use warnings 'FATAL' => 'all';
use strict;
-use Text::Wrap qw(wrap);
-
-my %ACTIONS_OF = ('MM',
- { 'build' => [ q{/usr/bin/perl Makefile.PL}, q{make} ],
- 'check' => [ q{make test} ],
- 'package' => [ q{make DESTDIR="$pkgdir" install} ]
- },
- 'MB',
- { 'build' => [ q{/usr/bin/perl Build.PL}, q{./Build} ],
- 'check' => [ q{./Build test} ],
- 'package' => [ q{./Build install} ]
- } );
+my %ACTIONS_OF =
+ ('MM', {
+ 'build' => [ q{/usr/bin/perl Makefile.PL}, q{make} ],
+ 'check' => [ q{make test} ],
+ 'package' => [ q{make DESTDIR="$pkgdir" install} ]
+ },
+ 'MB', {
+ 'build' => [ q{/usr/bin/perl Build.PL}, q{./Build} ],
+ 'check' => [ q{./Build test} ],
+ 'package' => [ q{./Build install} ]
+ });
my %FUNCFMTS;
$FUNCFMTS{'build'} = <<'END_FMT';