Alien-YARA

 view release on metacpan or  search on metacpan

lib/Alien/YARA.pm  view on Meta::CPAN

 ));

In your Perl module code:

 use Alien::YARA;
 use FFI::Platypus;

 my $ffi = FFI::Platypus->new( api => 2 );
 $ffi->lib( Alien::YARA->dynamic_libs );

 # Now attach your C functions
 $ffi->attach( 'yr_initialize' => [] => 'int' );

=head1 DESCRIPTION

This module acts as an encapsulation layer for the YARA C library (C<libyara>).
It checks your host system to see if YARA is already installed via native package
management (like C<apt>, C<homebrew>, or C<pkgconf>). If it cannot find a suitable
global version, it automatically downloads the official YARA source code,
compiles it, and isolates the binaries locally within your Perl library tree.

This makes bundling dependencies for FFI-based modules like L<YaraFFI> perfectly
cross-platform across Linux, macOS, and Windows.

=head1 METHODS

This class inherits all methods from L<Alien::Base>. The most critical ones for FFI usage are:

=head2 dist_dir

 my $dir = Alien::YARA->dist_dir;

Returns the local installation directory if a C<share> install was performed.

=head2 dynamic_libs

 my @libs = Alien::YARA->dynamic_libs;
 my $lib  = $libs[0];

Returns a list of paths to the shared objects or dynamic libraries (C<.so>, C<.dylib>, C<.dll>).
Pass this directly into your L<FFI::Platypus> instantiation.

=head2 cflags

 my $cflags = Alien::YARA->cflags;

Returns the compiler flags needed to compile an XS module against C<libyara>.

=head2 libs

 my $libs = Alien::YARA->libs;

Returns the linker flags needed to link an XS module against C<libyara>.

=head1 SEE ALSO

=over 4

=item * L<YaraFFI> - The primary FFI interface built on top of this module.

=item * L<Alien::Base> - The base framework powering this installer wrapper.

=item * L<Alien::Build> - The underlying tools used to configure, download, and build YARA.

=item * L<https://github.com/VirusTotal/yara> - The official YARA open-source repository.

=back

=head1 AUTHOR

Mohammad Sajid Anwar, C<< <mohammad.anwar at yahoo.com> >>

=head1 REPOSITORY

L<https://github.com/manwar/Alien-YARA>

=head1 BUGS

Please report any bugs or feature requests through the web interface at L<https://github.com/manwar/Alien-YARA/issues>.
I will  be notified and then you'll automatically be notified of progress on your
bug as I make changes.

=head1 SUPPORT

You can find documentation for this module with the perldoc command.

    perldoc Alien-YARA

You can also look for information at:

=over 4

=item * BUG Report

L<https://github.com/manwar/Alien-YARA/issues>

=item * CPAN Ratings

L<http://cpanratings.perl.org/d/Alien-YARA>

=item * Search MetaCPAN

L<https://metacpan.org/dist/Alien-YARA>

=back

=head1 LICENSE AND COPYRIGHT

Copyright (C) 2026 Mohammad Sajid Anwar.

This program  is  free software; you can redistribute it and / or modify it under
the  terms  of the the Artistic License (2.0). You may obtain a  copy of the full
license at:
L<http://www.perlfoundation.org/artistic_license_2_0>
Any  use,  modification, and distribution of the Standard or Modified Versions is
governed by this Artistic License.By using, modifying or distributing the Package,
you accept this license. Do not use, modify, or distribute the Package, if you do
not accept this license.
If your Modified Version has been derived from a Modified Version made by someone
other than you,you are nevertheless required to ensure that your Modified Version
 complies with the requirements of this license.



( run in 1.644 second using v1.01-cache-2.11-cpan-df04353d9ac )