blob: 615810435b0438a2d541a5ab5be435adb3ccb24d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
librefetch.conf(5) -- librefetch configuration file
===================================================
## SYNOPSIS
`/etc/libretools.d/librefetch.conf`, `~/.config/libretools/librefetch.conf`
## DESCRIPTION
Configuration for librefetch is stored in `librefetch.conf`. The
several places it looks for the file are:
* `/etc/libretools.d/librefetch.conf`
* `$XDG_CONFIG_HOME/libretools/librefetch.conf`
The later files take precidence over earlier files, but earlier files
are loaded, so that later files only need to set the values they want
to override.
If `$XDG_CONFIG_HOME` is not set, a default value is set:
* if `$SUDO_USER` is set: `$(eval echo ~$SUDO_USER)/.config`
* else: `$HOME/.config`
## OPTIONS
* `MIRRORS=( ... )`:
A list of locations that generated source tarballs may be located
at. If a URL begins with `libre://`, then `libre://` is replaced
with the first location listed here.
* `DOWNLOADER='/usr/bin/curl -fLC - --retry 3 --retry-delay 3 -o %o %u'`:
The HTTP client to use when downloading pre-built source tarballs
in download mode. The format and semantics are similar to
`DLAGENTS` in `makepkg.conf`(5). If present, `%u` will be replaced
with the download URL (correctly quoted), otherwise the download
URL will be appended to the end of the command. If present, `%o`
will be replaced with the local filename that it should be
downloaded to.
## SEE ALSO
librefetch(8), makepkg.conf(5)
|