Advertisement
Guest User

Untitled

a guest
Mar 20th, 2022
146
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 2.29 KB | None | 0 0
  1. # $Id$
  2. #
  3. # Please read the sbopkg.conf(5) man page for information about this
  4. # configuration file, including an explanation of how to set these
  5. # variables.
  6.  
  7. # The following variables are used by sbopkg and by the SlackBuild
  8. # scripts themselves.  They must be exported for this reason.
  9. export TMP=${TMP:-/tmp/SBo}
  10. export OUTPUT=${OUTPUT:-/tmp}
  11.  
  12. # The following are variables used by sbopkg.  Any of these variables
  13. # could be exported, if desired.
  14.  
  15. # Path variables
  16. LOGFILE=${LOGFILE:-/var/log/sbopkg/sbopkg-build-log}
  17. QUEUEDIR=${QUEUEDIR:-/var/lib/sbopkg/queues}
  18. REPO_ROOT=${REPO_ROOT:-/var/lib/sbopkg}
  19. SRCDIR=${SRCDIR:-/var/cache/sbopkg}
  20. BLACKLISTFILE=${BLACKLISTFILE:-/etc/sbopkg/blacklist}
  21. # sbopkg's temporary directory (where its internal temporary files are
  22. # kept and where packages are made prior to being moved to OUTPUT)
  23. # defaults to /tmp/sbopkg.XXXXXX where 'XXXXXX' is a random string. If
  24. # /tmp is not a suitable containing directory, pass in an alternate
  25. # TMPDIR or modify the following variable. This is actually a mktemp(1)
  26. # variable.
  27. export TMPDIR=${TMPDIR:-/tmp}
  28.  
  29. # Other variables:
  30. CLEANUP=${CLEANUP:-NO}
  31. DEBUG_UPDATES=${DEBUG_UPDATES:-0}
  32. KEEPLOG=${KEEPLOG:-YES}
  33. MKDIR_PROMPT=${MKDIR_PROMPT:-NO}
  34. NICE=${NICE:-10}
  35. REPO_BRANCH=${REPO_BRANCH:-15.0}
  36. REPO_NAME=${REPO_NAME:-SBo}
  37.  
  38. # The following variable determines if multiple instances of sbopkg can
  39. # be run simultaneously. It is *strongly* recommended that this value be
  40. # set to NO. Do not set it to YES without first reading the
  41. # sbopkg.conf(5) man page.
  42. ALLOW_MULTI=${ALLOW_MULTI:-YES}
  43.  
  44. # The following variables are required and can be tweaked if desired,
  45. # although this is not recommended.  Note:  rsync already uses
  46. # --archive, --delete, --no-owner, and --exclude in the main sbopkg
  47. # script so there is no need to add those flags here.
  48. DIFF=${DIFF:-diff}
  49. DIFFOPTS=${DIFFOPTS:--u}
  50. RSYNCFLAGS="${RSYNCFLAGS:---verbose --timeout=30}"
  51. WGETFLAGS="${WGETFLAGS:--c --progress=bar:force --timeout=30 --tries=5}"
  52.  
  53. # SRC_REPO defaults to "http://slackware.uk/sbosrcarch". To use
  54. # a different repository, uncomment and edit this variable. The value
  55. # must be the URL of the directory containing the by-name and by-md5
  56. # sub directories, and should NOT have a trailing slash.
  57. # SRC_REPO="http://slackware.uk/sbosrcarch"
  58.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement