diff options
author | Justin Davis <jrcd83@gmail.com> | 2011-10-08 17:58:41 +0200 |
---|---|---|
committer | Justin Davis <jrcd83@gmail.com> | 2011-10-08 17:58:41 +0200 |
commit | e8e5cef0627ba2db59d73e35cca2b6639d6e1f45 (patch) | |
tree | 47473e08630f2ffeafec0be88ee4bec67bf39902 /bin | |
parent | b51a7fcdc4be35bba00d2f2dc45bccf1cffe0ebf (diff) | |
download | genpkg-e8e5cef0627ba2db59d73e35cca2b6639d6e1f45.tar.gz genpkg-e8e5cef0627ba2db59d73e35cca2b6639d6e1f45.tar.xz |
Start changing style of perl-pkg. Use tabs for data indent.
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/templ/perl-pkg | 23 |
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'; |