diff options
author | Allan McRae <allan@archlinux.org> | 2008-11-23 12:17:15 +0100 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2009-01-03 07:06:51 +0100 |
commit | bb9b19a6c45e39bd617faa5eb47c074f9c12f94e (patch) | |
tree | 7859e4b8df398b178e8632508badfeea515aeb65 /doc | |
parent | b55f478042053dfb749da7ce0a48fc0e49112093 (diff) | |
download | pacman-bb9b19a6c45e39bd617faa5eb47c074f9c12f94e.tar.gz pacman-bb9b19a6c45e39bd617faa5eb47c074f9c12f94e.tar.xz |
makepkg: provide MAN_DIRS configuration variable
Provides a MAN_DIRS variable in makepkg.conf which can be used
to specify folders to look for manual (man and info) pages to be
compressed. Useful for packages that install to /opt. Also
clarifies that "zipman" means "zip manuals" and covers both man
and info pages.
Original work by: Tiago Pierezan Camargo <tcamargo at gmail.com>
Signed-off-by: Allan McRae <allan@archlinux.org>
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'doc')
-rw-r--r-- | doc/makepkg.conf.5.txt | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/doc/makepkg.conf.5.txt b/doc/makepkg.conf.5.txt index ca9df025..18dbf350 100644 --- a/doc/makepkg.conf.5.txt +++ b/doc/makepkg.conf.5.txt @@ -123,13 +123,20 @@ Options Leave empty directories in packages. *zipman*;; - Compress man and info pages with gzip. + Compress manual (man and info) pages with gzip. **INTEGRITY_CHECK=(**check1 ...**)**:: File integrity checks to use. Multiple checks may be specified; this affects both generation and checking. The current valid options are: `md5`, `sha1`, `sha256`, `sha384`, and `sha512`. +**MAN_DIRS=(**{usr{,/local}{,/share},opt/*}/{man,info} ...**)**:: + If "zipman" is specified in the OPTIONS array, this variable will + instruct makepkg where to look to compress manual (man and info) + pages. If you build packages that are located in opt/, you may need + to add the directory to this array. *NOTE:* Do not add the leading + slash to the directory name. + **DOC_DIRS=(**usr/{,share/}{doc,gtk-doc} ...**)**:: If "!docs" is specified in the OPTIONS array, this variable will instruct makepkg where to look to remove docs. If you build packages |