tag with release date
[www-quvi.git] / README
blobf53154110f8d35a3df73c160429ba9376ca6e12b
3 WWW::Quvi
4 ============
6 WWW::Quvi are the Perl bindings for libquvi.
8 This module provides a Perl interface to libquvi. This documentation contains
9 the Perl specific details and some sample code. The libquvi documentation
10 should be consulted for the API details at <http://quvi.googlecode.com/>.
12 WWW: <http://www-quvi.googlecode.com/>
13 GIT: <git://repo.or.cz/www-quvi.git>
16 PREREQUISITES
18   * quvi 0.2.5+  <http://quvi.googlecode.com/>
19     - 0.2.0 should be OK, though some WWW::Quvi tests (e.g. version) *will* fail
21   * Perl 5.8.9+  <http://perl.org/>
23 Additionally (to build):
24   * ExtUtils::MakeMaker <http://search.cpan.org/perldoc?ExtUtils::Depends>
25   * ExtUtils::PkgConfig <http://search.cpan.org/perldoc?ExtUtils::PkgConfig>
26   * ExtUtils::Depends   <http://search.cpan.org/perldoc?ExtUtils::Depends>
29 INSTALLATION
31 To install this module, type the following:
33     perl Makefile.PL
34     make
35     make test (optional, see notes below)
36     make install (see notes below)
39 WHAT IS NOT IMPLEMENTED
41   * Callbacks (e.g. status callback)
43   * Multiple download links per video
46 NOTES
48 * Developed on and for Linux, should port fairly easily to other systems,
49     - Randomly tested on FreeBSD
51 * You can edit CXXFLAGS LDFLAGS, etc. in Makefile.PL
52     - ExtUtils::MakeMaker supports many more (URLs under "See also")
54 * You can specify an install "prefix" with INSTALL_BASE
55     - e.g. perl Makefile.PL INSTALL_BASE=/usr/local
57 * Set HAVE_INTERNET if you want to run the tests depending on the Internet
58     - e.g. env HAVE_INTERNET=1 make test
60 * See also:
61     - <http://search.cpan.org/perldoc?ExtUtils::MakeMaker>
62     - <http://perldoc.perl.org/ExtUtils/MakeMaker/FAQ.html>