wok view ocsinventory-agent/stuff/Tazpkg.pm @ rev 22351

umfpack: hide metis-4.0 missing
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Nov 18 16:07:36 2019 +0100 (2019-11-18)
parents 894c779750dc
children
line source
1 package Ocsinventory::Agent::Backend::OS::Generic::Packaging::Tazpkg;
3 use strict;
4 use warnings;
6 sub check { can_run("tazpkg") }
8 sub run {
9 my $params = shift;
10 my $inventory = $params->{inventory};
12 # use tazpkg list\n'
13 foreach (`tazpkg list `){
14 next if (/List of/);
15 next if (/packages installed/);
17 if (/^(\S+)\[24G\s+(\S+)\[42G\s+(\S+)/) {
18 $inventory->addSoftware({
19 'NAME' => $1,
20 'VERSION' => $2,
21 'COMMENTS' => $3
22 });
23 }
24 }
26 }
28 1;