diff options
author | Daniel Friesel <derf@derf.homelinux.org> | 2008-06-07 22:19:10 +0200 |
---|---|---|
committer | Daniel Friesel <derf@derf.homelinux.org> | 2008-06-07 22:19:10 +0200 |
commit | 8cfb41bc6e5f71086a6faab181c038ae223036a1 (patch) | |
tree | 2cd4cce0f5b2c7929976855e9481f5a936fac358 /man/5 | |
parent | 61328cb12aa7795bb625c32c583be53046d7edb4 (diff) |
added manual for pkg.conf
Diffstat (limited to 'man/5')
-rw-r--r-- | man/5/pkg.conf | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/man/5/pkg.conf b/man/5/pkg.conf new file mode 100644 index 0000000..1446e19 --- /dev/null +++ b/man/5/pkg.conf @@ -0,0 +1,55 @@ +=pod + +=head1 NAME + +pkg.conf - L<pkg>(1) configuration + +=head1 DESCRIPTION + +Contains configuration variables for L<pkg>(1) + +The file consists of multiple lines of the form I<variable>=I<value>. + +Normal zsh syntax is allowed, which means everything after '#' will be treated +a comment and that there must be no space between the variable and the content. + +=head1 OPTIONS + +=over + +=item B<PKG_ROOT>=I<url> + +the package root path. +Default: ssh://derf.homelinux.org/var/packages_root + +=item B<PDIR>=I<path> + +path for the local package tree. +Default: $HOME/packages + +WARNING: changing this will break everything. Don't do it. + +=item B<VCS_CMD>=I<command> + +Command to invoke the vcs. +Default: hg + +=item B<VCS_OPTIONS>=I<options> + +global options to invoke VCS_CMD with. +Default: --quiet + +=item B<CL_OPTIONS>=I<options> + +Options to invoke L<checklinks>(1) with. +Default: -q + +=back + +=head1 SEE ALSO + +L<pkg>(1), L<checklinks>(1) + +=cut + +vim:ft=pod |