source: projects/self-build-setup/tags/1.0.2/self-build.conf @ 7449

Revision 7449, 964 bytes checked in by munepi, 11 years ago (diff)

tagging 1.0.2

Line 
1#
2# configuration file for self-build-setup
3#
4
5# The top directory for building rpm package
6# default = /var/tmp
7# If your system has enough large memory (about 4GB or larger),
8# you may give TEMP_DIR to a directory on tmpfs.
9# For example, TEMP_DIR=/dev/shm
10TEMP_DIR=/var/tmp
11
12# cache downloaded files
13# default = no
14# If you give CACHE_DOWNLOADED_FILES yes,
15# self-build cache the downloaded files to /var/cache/self-build.
16CACHE_DOWNLOADED_FILES=no
17
18# additional wget options
19# default = "-T 10 -t 5"
20# -T SECONDS: set all timeout values to SECONDS.
21# -t NUMBER: set number of retries to NUMBER (0 unlimits).
22# You MUST NOT give the variable WGET_OPTS the options -O and -N!
23# You also SHOULD NOT make /var/lib/selfbuild/.wgetrc!
24WGET_OPTS="-T 10 -t 5"
25
26# User who build the rpm packages
27# default = selfbuild
28BUILD_USER=selfbuild
29
30# show download progress
31# default = yes
32DL_SHOW_PROGRESS=yes
33
34# show build progress
35# default = yes
36BUILD_SHOW_PROGRESS=yes
Note: See TracBrowser for help on using the repository browser.