Advertisement
Guest User

pcbsd.cfg

a guest
Dec 28th, 2013
8
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.69 KB | None | 0 0
  1.  
  2. #!/bin/sh
  3. # PC-BSD Build configuration settings
  4.  
  5. # Which PC-BSD git URL to clone
  6. GITPCBSDURL="https://github.com/pcbsd/pcbsd.git"
  7. export GITPCBSDURL
  8.  
  9. # Branch of the PC-BSD repo to build with
  10. # Available (9.2-release/master)
  11. #
  12. # Note, this is only used for the overlays/install-overlay directory
  13. # All other PC-BSD code is pulled from the PKGNG repo. If you want to
  14. # customize these bits, you will want to build a new local repo below.
  15. GITPCBSDBRANCH="master"
  16. export GITPCBSDBRANCH
  17.  
  18. # Which PC-BSD/FreeBSD git URL to clone for FreeBSD world/kernel
  19. GITFBSDURL="https://github.com/pcbsd/freebsd.git"
  20. export GITFBSDURL
  21.  
  22. # The branch of PC-BSD/FreeBSD to build
  23. # Available (releng/9.2, stable/10)
  24. GITFBSDBRANCH="svn_head"
  25. export GITFBSDBRANCH
  26.  
  27. # Set the target version of this build
  28. # Used for pulling pkgng packages / poudriere jail
  29. TARGETREL="svn_head"
  30. export TARGETREL
  31.  
  32. # Set the target ARCH type for world / pkgng building
  33. ARCH="amd64"
  34. export ARCH
  35.  
  36. # Set if we are using a locally built PKGNG repo, or a remote one
  37. # Available (local, remote)
  38. #
  39. # NOTE: If using local, you will need to install poudriere and be required
  40. # to do a complete PKGNG build of the FreeBSD ports tree.
  41. PKGREPO="local"
  42. export PKGREPO
  43.  
  44. # Git URL to pull the ports tree from, used if PKGREPO is set to "local"
  45. PORTS_GIT_URL="https://github.com/pcbsd/freebsd-ports.git"
  46. export PORTS_GIT_URL
  47.  
  48. # Poudriere data location, used if PKGREPO is set to "local"
  49. POUD="/poudriere"
  50. export POUD
  51.  
  52. # Run Poudriere in verbose mode?
  53. # YES / NO - Default NO
  54. #POUD_VERBOSE="YES"
  55. export POUD_VERBOSE
  56.  
  57. # Set this with the flag for pkg repo to do signing with
  58. #POUD_SIGN_REPO="signing_command: <cmd>"
  59. export POUD_SIGN_REPO
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement