GStreamer
view release on metacpan or search on metacpan
Makefile.PL view on Meta::CPAN
#endif /* $typemacro */
EOT
}
Glib::CodeGen->add_type_handler (GstObject => \&gen_object_stuff);
Glib::CodeGen->add_type_handler (GstMiniObject => \&gen_mini_object_stuff);
Glib::CodeGen->parse_maps('gst2perl');
Glib::CodeGen->write_boot(ignore => qr/^GStreamer$/);
# --------------------------------------------------------------------------- #
ExtUtils::PkgConfig->write_version_macros (
"build/gst2perl-version.h",
"gstreamer-0.10" => "GST",
);
my $gst = ExtUtils::Depends->new('GStreamer', 'Glib');
$gst->set_inc($pkgcfg{cflags} . ' -I./build ');
$gst->set_libs($pkgcfg{libs});
$gst->add_xs(@xs_files);
$gst->add_pm('lib/GStreamer.pm' => '$(INST_LIBDIR)/GStreamer.pm');
$gst->add_typemaps(map {File::Spec->catfile(cwd(), $_)}
('gst.typemap', 'build/gst2perl.typemap'));
$gst->install(qw(gst2perl.h
build/gst2perl-autogen.h
build/gst2perl-version.h
doctypes));
$gst->save_config('build/IFiles.pm');
WriteMakefile(
NAME => 'GStreamer',
VERSION_FROM => 'lib/GStreamer.pm',
ABSTRACT_FROM => 'lib/GStreamer.pm',
PREREQ_PM => \%PREREQ_PM,
XSPROTOARG => '-noprototypes',
MAN3PODS => \%pod_files,
META_MERGE => \%meta_merge,
$gst->get_makefile_vars,
);
print <<__EON__;
NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE
This module has been deprecated by the Gtk-Perl project. This means that the
module will no longer be updated with security patches, bug fixes, or when
changes are made in the Perl ABI. The Git repo for this module has been
archived (made read-only), it will no longer possible to submit new commits to
it. You are more than welcome to ask about this module on the Gtk-Perl
mailing list, but our priorities going forward will be maintaining Gtk-Perl
modules that are supported and maintained upstream; this module is neither.
Since this module is licensed under the LGPL v2.1, you may also fork this
module, if you wish, but you will need to use a different name for it on CPAN,
and the Gtk-Perl team requests that you use your own resources (mailing list,
Git repos, bug trackers, etc.) to maintain your fork going forward.
* Perl URL: https://gitlab.gnome.org/GNOME/perl-gstreamer
* Upstream URL: https://gitlab.freedesktop.org/gstreamer/gstreamer
* Last upstream version: 0.10.35
* Last upstream release date: 2011-06-15
* Migration path for this module: G:O:I
* Migration module URL: https://metacpan.org/pod/Glib::Object::Introspection
NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE
__EON__
sub MY::postamble {
return Glib::MakeHelper->postamble_clean ()
. Glib::MakeHelper->postamble_docs_full (
DEPENDS => $gst,
DOCTYPES => 'doctypes',
COPYRIGHT_FROM => 'copyright.pod');
}
( run in 1.273 second using v1.01-cache-2.11-cpan-13bb782fe5a )