Advertisement
tsester

makepkg.conf

May 10th, 2015
230
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.81 KB | None | 0 0
  1. #
  2. # /etc/makepkg.conf
  3. #
  4. #########################################################################
  5. # SOURCE ACQUISITION
  6. #########################################################################
  7. #
  8. #-- The download utilities that makepkg should use to acquire sources
  9. # Format: 'protocol::agent'
  10. DLAGENTS=('ftp::/usr/bin/curl -fC - --ftp-pasv --retry 3 --retry-delay 3 -o %o %u'
  11. 'http::/usr/bin/curl -fLC - --retry 3 --retry-delay 3 -o %o %u'
  12. 'https::/usr/bin/curl -fLC - --retry 3 --retry-delay 3 -o %o %u'
  13. 'rsync::/usr/bin/rsync --no-motd -z %u %o'
  14. 'scp::/usr/bin/scp -C %u %o')
  15. # Other common tools:
  16. # /usr/bin/snarf
  17. # /usr/bin/lftpget -c
  18. # /usr/bin/wget
  19. #-- The package required by makepkg to download VCS sources
  20. # Format: 'protocol::package'
  21. VCSCLIENTS=('bzr::bzr'
  22. 'git::git'
  23. 'hg::mercurial'
  24. 'svn::subversion')
  25. #########################################################################
  26. # ARCHITECTURE, COMPILE FLAGS
  27. #########################################################################
  28. #
  29. CARCH="x86_64"
  30. CHOST="x86_64-unknown-linux-gnu"
  31. #-- Compiler and Linker Flags
  32. # -march (or -mcpu) builds exclusively for an architecture
  33. # -mtune optimizes for an architecture, but builds for whole processor family
  34. CPPFLAGS="-D_FORTIFY_SOURCE=2"
  35. CFLAGS="-march=core2 -m64 -mfpmath=sse -O2 -fomit-frame-pointer -pipe -fstack-protector --param=ssp-buffer-size=4"
  36. CXXFLAGS="${CFLAGS}"
  37. LDFLAGS="-Wl,-O1,--sort-common,--as-needed,-z,relro"
  38. #-- Make Flags: change this for DistCC/SMP systems
  39. MAKEFLAGS="-j5"
  40. #-- Debugging flags
  41. DEBUG_CFLAGS="-g -fvar-tracking-assignments"
  42. DEBUG_CXXFLAGS="-g -fvar-tracking-assignments"
  43. #########################################################################
  44. # BUILD ENVIRONMENT
  45. #########################################################################
  46. #
  47. # Defaults: BUILDENV=(!distcc color !ccache check !sign)
  48. # A negated environment option will do the opposite of the comments below.
  49. #
  50. #-- distcc: Use the Distributed C/C++/ObjC compiler
  51. #-- color: Colorize output messages
  52. #-- ccache: Use ccache to cache compilation
  53. #-- check: Run the check() function if present in the PKGBUILD
  54. #-- sign: Generate PGP signature file
  55. #
  56. BUILDENV=(!distcc color !ccache check !sign)
  57. #
  58. #-- If using DistCC, your MAKEFLAGS will also need modification. In addition,
  59. #-- specify a space-delimited list of hosts running in the DistCC cluster.
  60. #DISTCC_HOSTS=""
  61. #
  62. #-- Specify a directory for package building.
  63. #BUILDDIR=/tmp/makepkg
  64. #########################################################################
  65. # GLOBAL PACKAGE OPTIONS
  66. # These are default values for the options=() settings
  67. #########################################################################
  68. #
  69. # Default: OPTIONS=(strip docs !libtool !staticlibs emptydirs zipman purge !upx !debug)
  70. # A negated option will do the opposite of the comments below.
  71. #
  72. #-- strip: Strip symbols from binaries/libraries
  73. #-- docs: Save doc directories specified by DOC_DIRS
  74. #-- libtool: Leave libtool (.la) files in packages
  75. #-- staticlibs: Leave static library (.a) files in packages
  76. #-- emptydirs: Leave empty directories in packages
  77. #-- zipman: Compress manual (man and info) pages in MAN_DIRS with gzip
  78. #-- purge: Remove files specified by PURGE_TARGETS
  79. #-- upx: Compress binary executable files using UPX
  80. #-- debug: Add debugging flags as specified in DEBUG_* variables
  81. #
  82. OPTIONS=(strip docs !libtool !staticlibs emptydirs zipman purge !upx !debug)
  83. #-- File integrity checks to use. Valid: md5, sha1, sha256, sha384, sha512
  84. INTEGRITY_CHECK=(md5)
  85. #-- Options to be used when stripping binaries. See `man strip' for details.
  86. STRIP_BINARIES="--strip-all"
  87. #-- Options to be used when stripping shared libraries. See `man strip' for details.
  88. STRIP_SHARED="--strip-unneeded"
  89. #-- Options to be used when stripping static libraries. See `man strip' for details.
  90. STRIP_STATIC="--strip-debug"
  91. #-- Manual (man and info) directories to compress (if zipman is specified)
  92. MAN_DIRS=({usr{,/local}{,/share},opt/*}/{man,info})
  93. #-- Doc directories to remove (if !docs is specified)
  94. DOC_DIRS=(usr/{,local/}{,share/}{doc,gtk-doc} opt/*/{doc,gtk-doc})
  95. #-- Files to be removed from all packages (if purge is specified)
  96. PURGE_TARGETS=(usr/{,share}/info/dir .packlist *.pod)
  97. #########################################################################
  98. # PACKAGE OUTPUT
  99. #########################################################################
  100. #
  101. # Default: put built package and cached source in build directory
  102. #
  103. #-- Destination: specify a fixed directory where all packages will be placed
  104. #PKGDEST=/home/packages
  105. #-- Source cache: specify a fixed directory where source files will be cached
  106. #SRCDEST=/home/sources
  107. #-- Source packages: specify a fixed directory where all src packages will be placed
  108. #SRCPKGDEST=/home/srcpackages
  109. #-- Log files: specify a fixed directory where all log files will be placed
  110. #LOGDEST=/home/makepkglogs
  111. #-- Packager: name/email of the person or organization building packages
  112. #PACKAGER="John Doe <john@doe.com>"
  113. #-- Specify a key to use for package signing
  114. #GPGKEY=""
  115.  
  116. #########################################################################
  117. # COMPRESSION DEFAULTS
  118. #########################################################################
  119. #
  120. COMPRESSGZ=(gzip -c -f -n)
  121. COMPRESSBZ2=(bzip2 -c -f)
  122. COMPRESSXZ=(xz -c -z -)
  123. COMPRESSLRZ=(lrzip -q)
  124. COMPRESSLZO=(lzop -q)
  125. COMPRESSZ=(compress -c -f)
  126.  
  127. #########################################################################
  128. # EXTENSION DEFAULTS
  129. #########################################################################
  130. #
  131. # WARNING: Do NOT modify these variables unless you know what you are
  132. # doing.
  133. #
  134. PKGEXT='.pkg.tar.xz'
  135. SRCEXT='.src.tar.gz'
  136.  
  137. # vim: set ft=sh ts=2 sw=2 et:
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement