How to Install and Uninstall perl-Module-Build Package on openSuSE Tumbleweed

Last updated: October 05,2024

1. Install "perl-Module-Build" package

In this section, we are going to explain the necessary steps to install perl-Module-Build on openSuSE Tumbleweed

$ sudo zypper refresh $ sudo zypper install perl-Module-Build

2. Uninstall "perl-Module-Build" package

Please follow the guidelines below to uninstall perl-Module-Build on openSuSE Tumbleweed:

$ sudo zypper remove perl-Module-Build

3. Information about the perl-Module-Build package on openSuSE Tumbleweed

Information for package perl-Module-Build:
------------------------------------------
Repository : openSUSE-Tumbleweed-Oss
Name : perl-Module-Build
Version : 0.423400-1.4
Arch : noarch
Vendor : openSUSE
Installed Size : 652.1 KiB
Installed : No
Status : not installed
Source package : perl-Module-Build-0.423400-1.4.src
Upstream URL : https://metacpan.org/release/Module-Build
Summary : Build and install Perl modules
Description :
'Module::Build' is a system for building, testing, and installing Perl
modules. It is meant to be an alternative to 'ExtUtils::MakeMaker'.
Developers may alter the behavior of the module through subclassing. It
also does not require a 'make' on your system - most of the 'Module::Build'
code is pure-perl and written in a very cross-platform way.
See "COMPARISON" for more comparisons between 'Module::Build' and other
installer tools.
To install 'Module::Build', and any other module that uses 'Module::Build'
for its installation process, do the following:
perl Build.PL # 'Build.PL' script creates the 'Build' script
./Build # Need ./ to ensure we're using this "Build" script
./Build test # and not another one that happens to be in the PATH
./Build install
This illustrates initial configuration and the running of three 'actions'.
In this case the actions run are 'build' (the default action), 'test', and
'install'. Other actions defined so far include:
build manifest
clean manifest_skip
code manpages
config_data pardist
diff ppd
dist ppmdist
distcheck prereq_data
distclean prereq_report
distdir pure_install
distinstall realclean
distmeta retest
distsign skipcheck
disttest test
docs testall
fakeinstall testcover
help testdb
html testpod
install testpodcoverage
installdeps versioninstall
You can run the 'help' action for a complete list of actions.