File: INSTALL

package info (click to toggle)
libsys-virt-perl 12.0.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,104 kB
  • sloc: perl: 2,187; sh: 12; makefile: 3
file content (20 lines) | stat: -rw-r--r-- 558 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
   Sys::Virt Installation
   ======================

Sys::Virt requires that libvirt already be installed on the
system. The libvirt libraries and header files are located using
the pkg-config database. If libvirt is installed to a prefix
other than /usr, then be sure to set the PKG_CONFIG_PATH environment
variable before building this module:

  $ export PKG_CONFIG_PATH=/some/prefix/lib/pkgconfig

Then follow the standard procedure for a Module::Build based
installation:

  $ perl Build.PL
  $ ./Build
  $ ./Build test
  $ sudo ./Build install

-- End