File: 61_inject_dbicadmin_pod.pl

package info (click to toggle)
libdbix-class-perl 0.082844-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 5,320 kB
  • sloc: perl: 27,215; sql: 322; sh: 29; makefile: 16
file content (22 lines) | stat: -rw-r--r-- 820 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# without having the pod in the file itself, perldoc may very
# well show a *different* document, because perl and perldoc
# search @INC differently (crazy right?)
#
# make sure we delete and re-create the file - just an append
# will not do what one expects, because on unixy systems the
# target is symlinked to the original
postamble <<"EOP";

create_distdir : dbic_distdir_dbicadmin_pod_inject

dbic_distdir_dbicadmin_pod_inject :
\t\$(RM_F) \$(DISTVNAME)/script/dbicadmin
\t@{[ $mm_proto->oneliner('cat', ['-MExtUtils::Command']) ]} script/dbicadmin maint/.Generated_Pod/dbicadmin.pod > \$(DISTVNAME)/script/dbicadmin

# FIXME also on win32 EU::Command::cat() adds crlf even if the
# source files do not contain any :(
@{[ $crlf_fixup->('$(DISTVNAME)/script/dbicadmin') ]}
EOP

# keep the Makefile.PL eval happy
1;