• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

util/H30-Nov-2013-13126

website/H30-Nov-2013-7,3143,887

Makefile.amH A D30-Nov-2013252 149

Makefile.inH A D03-May-202212.2 KiB413345

READMEH A D30-Nov-20131.1 KiB4425

versionH A D30-Nov-20138 21

README

1
2
3This directory contains the quvi lua scripts. If you are new to lua,
4<http://www.lua.org/pil/> is a good place to start.
5
6  website/quvi  - misc. utility scripts that the webscripts use
7  website/      - webscripts that are used to parse the media details
8  util/         - utility scripts that libquvi uses
9
10Refer to the libquvi API documentation at <http://quvi.sourceforge.net/doc/>
11for a tutorial.
12
13
14Debugging tips
15==============
16
17Search paths
18------------
19
20Typical libquvi lua script search paths. Scanned in the following order:
21
22  1) $LIBQUVI_SCRIPTSDIR
23
24  2) Current working directory
25
26  3) $HOME/.libquvi-scripts/
27
28  4) $HOME/.config/libquvi-scripts/
29
30  5) $HOME/.local/share/libquvi-scripts/
31
32  6) `pkg-config --variable scriptsdir libquvi-scripts`
33     typically this is "$prefix/share/libquvi-scripts/"
34
35The library will look for the scripts under lua/ subdirectory.
36
37
38Environment variables
39---------------------
40
41  LIBQUVI_SHOW_SCANDIR  - If set, libquvi prints out the scanned dir paths
42  LIBQUVI_SHOW_SCRIPT   - If set, libquvi prints out the found scripts
43  LIBQUVI_SCRIPTSDIR    - If defined, libquvi scans it for the scripts first
44