How to Install and Uninstall perl-Inline Package on openSUSE Leap

Last updated: April 29,2024

1. Install "perl-Inline" package

Please follow the instructions below to install perl-Inline on openSUSE Leap

$ sudo zypper refresh $ sudo zypper install perl-Inline

2. Uninstall "perl-Inline" package

Please follow the step by step instructions below to uninstall perl-Inline on openSUSE Leap:

$ sudo zypper remove perl-Inline

3. Information about the perl-Inline package on openSUSE Leap

Information for package perl-Inline:
------------------------------------
Repository : Main Repository
Name : perl-Inline
Version : 0.86-bp155.3.5
Arch : noarch
Vendor : openSUSE
Installed Size : 260.7 KiB
Installed : No
Status : not installed
Source package : perl-Inline-0.86-bp155.3.5.src
Upstream URL : https://metacpan.org/release/Inline
Summary : Write Perl Subroutines in Other Programming Languages
Description :
The Inline module allows you to put source code from other programming
languages directly "inline" in a Perl script or module. The code is
automatically compiled as needed, and then loaded for immediate access from
Perl.
Inline saves you from the hassle of having to write and compile your own
glue code using facilities like XS or SWIG. Simply type the code where you
want it and run your Perl as normal. All the hairy details are handled for
you. The compilation and installation of your code chunks all happen
transparently; all you will notice is the delay of compilation on the first
run.
The Inline code only gets compiled the first time you run it (or whenever
it is modified) so you only take the performance hit once. Code that is
Inlined into distributed modules (like on the CPAN) will get compiled when
the module is installed, so the end user will never notice the compilation
time.
Best of all, it works the same on both Unix and Microsoft Windows. See
Inline- Support for support information.