1use Module::Build; 2 3Module::Build->new( 4 dist_name => 'MRWTools', 5 dist_version => '1.0', 6 license => 'perl', 7 script_files => ['gen_callouts.pl', 8 'gen_devtree.pl', 9 'gen_fan_zone_yaml.pl', 10 'gen_fru_properties.pl', 11 'gen_ipmi_fru.pl', 12 'gen_ipmi_sel.pl', 13 'gen_ipmi_sensor.pl', 14 'gen_led_groups.pl', 15 'gen_openpower_fru.pl', 16 'gen_path_callouts.pl', 17 'gen_presence_yaml.pl', 18 'gen_occ_map.pl', 19 'gen_settings.pl', 20 'hwmon.pl'], 21 pm_files => {'Inventory.pm' => 'lib/mrw/Inventory.pm', 22 'Util.pm' => 'lib/mrw/Util.pm'}, 23)->create_build_script; 24