I'm trying to figure out the exact minimal required dependencies to run this little nice tool.
I am not a perl expert. I checked https://github.com/wofr06/csvtable for
"INSTALL" or "BUILD" intructions but cant find anything that states explicitly
what perl dependecies are needed. I only see
use strict;
use warnings;
use Text::CSV;
use Module::Load::Conditional qw[can_load];
use Getopt::Long;
use vars qw(%opt);
I'm on Arch linux using this recipe,
https://aur.archlinux.org/packages/csvtable
This Archlinux AUR recipe states that,
Dependencies (3)
• perl (perl-git^AUR)
• perl-text-csv
• perl-text-csv-xs^AUR
QUESTION: perl-text-csv-xs, https://metacpan.org/release/Text-CSV_XS
- Is that perl module/dependency, really necessary ? I ask because it is the only one that is not an official Arch packgage.
- Where does one infer that one needs "perl-text-csv-xs" ?
Thanks in advance.
I'm trying to figure out the exact minimal required dependencies to run this little nice tool.
I am not a perl expert. I checked https://github.com/wofr06/csvtable for
"INSTALL" or "BUILD" intructions but cant find anything that states explicitly
what perl dependecies are needed. I only see
I'm on Arch linux using this recipe,
https://aur.archlinux.org/packages/csvtable
This Archlinux AUR recipe states that,
QUESTION: perl-text-csv-xs, https://metacpan.org/release/Text-CSV_XS
Thanks in advance.