mirror of
https://github.com/adulau/aha.git
synced 2025-01-03 22:53:18 +00:00
bcefe12eff
Add Perf-Trace-Util Perl module and some scripts that use it. Core.pm contains Perl code to define and access flag and symbolic fields. Util.pm contains general-purpose utility functions. Also adds some makefile bits to install them in libexec/perf-core/scripts/perl (or wherever perfexec_instdir points). Signed-off-by: Tom Zanussi <tzanussi@gmail.com> Cc: fweisbec@gmail.com Cc: rostedt@goodmis.org Cc: anton@samba.org Cc: hch@infradead.org LKML-Reference: <1259133352-23685-5-git-send-email-tzanussi@gmail.com> Signed-off-by: Ingo Molnar <mingo@elte.hu>
12 lines
562 B
Perl
12 lines
562 B
Perl
use 5.010000;
|
|
use ExtUtils::MakeMaker;
|
|
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
|
|
# the contents of the Makefile that is written.
|
|
WriteMakefile(
|
|
NAME => 'Perf::Trace::Util',
|
|
VERSION_FROM => 'lib/Perf/Trace/Util.pm', # finds $VERSION
|
|
PREREQ_PM => {}, # e.g., Module::Name => 1.1
|
|
($] >= 5.005 ? ## Add these new keywords supported since 5.005
|
|
(ABSTRACT_FROM => 'lib/Perf/Trace/Util.pm', # retrieve abstract from module
|
|
AUTHOR => 'Tom Zanussi <tzanussi@gmail.com>') : ()),
|
|
);
|