#!/hint/bash # # /etc/makepkg.conf # ######################################################################### # FILE MANAGED BY PUPPET # LOCAL CHANGES WILL BE OVERWRITTEN ######################################################################### ######################################################################### # SOURCE ACQUISITION ######################################################################### # #-- The download utilities that makepkg should use to acquire sources # Format: 'protocol::agent' DLAGENTS=(<%- $pacman::makepkg::dlagents.each |$key, $value| { -%> '<%= "${key}::${value}" %>' <%- } %>) # Other common tools: # /usr/bin/snarf # /usr/bin/lftpget -c # /usr/bin/wget #-- The package required by makepkg to download VCS sources # Format: 'protocol::package' VCSCLIENTS=(<%- $pacman::makepkg::vcsclients.each |$key, $value| { -%> '<%= "${key}::${value}" %>' <%- } %>) ######################################################################### # ARCHITECTURE, COMPILE FLAGS ######################################################################### # CARCH="<%= $pacman::makepkg::carch %>" CHOST="<%= $pacman::makepkg::chost %>" #-- Compiler and Linker Flags <%= if $pacman::makepkg::cppflags == undef { '#' } %>CPPFLAGS="<%= $pacman::makepkg::cppflags %>" CFLAGS="-march=x86-64 -mtune=generic -O2 -pipe -fno-plt -fexceptions \ -Wp,-D_FORTIFY_SOURCE=2,-D_GLIBCXX_ASSERTIONS \ -Wformat -Werror=format-security \ -fstack-clash-protection -fcf-protection" CXXFLAGS="<%= $pacman::makepkg::cxxflags %>" LDFLAGS="<%= $pacman::makepkg::ldflags %>" <%= if $pacman::makepkg::rustflags == undef { '#' } %>RUSTFLAGS="<%= $pacman::makepkg::rustflags %>" #-- Make Flags: change this for DistCC/SMP systems <%= if $pacman::makepkg::makeflags == undef { '#' } %>MAKEFLAGS="<%= $pacman::makepkg::makeflags %>" #-- Debugging flags DEBUG_CFLAGS="<%= $pacman::makepkg::debug_cflags %>" DEBUG_CXXFLAGS="<%= $pacman::makepkg::debug_cxxflags %>" <%= if $pacman::makepkg::debug_rustflags == undef { '#' } %>DEBUG_RUSTFLAGS="-C debuginfo=2" ######################################################################### # BUILD ENVIRONMENT ######################################################################### # # Makepkg defaults: BUILDENV=(!distcc !color !ccache check !sign) # A negated environment option will do the opposite of the comments below. # #-- distcc: Use the Distributed C/C++/ObjC compiler #-- color: Colorize output messages #-- ccache: Use ccache to cache compilation #-- check: Run the check() function if present in the PKGBUILD #-- sign: Generate PGP signature file # BUILDENV=(<%- $pacman::makepkg::buildenv.each |$key, $value| { -%> <%= if ! $value { '!' } -%><%= $key -%> <%- } -%>) #-- If using DistCC, your MAKEFLAGS will also need modification. In addition, #-- specify a space-delimited list of hosts running in the DistCC cluster. <%= if $pacman::makepkg::distcc_hosts == undef { '#' } %>DISTCC_HOSTS="<%= $pacman::makepkg::distcc_hosts %>" # #-- Specify a directory for package building. <%= if $pacman::makepkg::builddir == undef { '#' } %>BUILDDIR="<%= $pacman::makepkg::builddir %>" ######################################################################### # GLOBAL PACKAGE OPTIONS # These are default values for the options=() settings ######################################################################### # # Makepkg defaults: OPTIONS=(!strip docs libtool staticlibs emptydirs !zipman !purge !debug !lto) # A negated option will do the opposite of the comments below. # #-- strip: Strip symbols from binaries/libraries #-- docs: Save doc directories specified by DOC_DIRS #-- libtool: Leave libtool (.la) files in packages #-- staticlibs: Leave static library (.a) files in packages #-- emptydirs: Leave empty directories in packages #-- zipman: Compress manual (man and info) pages in MAN_DIRS with gzip #-- purge: Remove files specified by PURGE_TARGETS #-- debug: Add debugging flags as specified in DEBUG_* variables #-- lto: Add compile flags for building with link time optimization # OPTIONS=(<%- $pacman::makepkg::options.each |$key, $value| { -%> <%= if ! $value { '!' } -%><%= $key -%> <%- } -%>) #-- File integrity checks to use. Valid: md5, sha1, sha224, sha256, sha384, sha512, b2 INTEGRITY_CHECK=(<%= $pacman::makepkg::integrity_check.join(' ') -%>) #-- Options to be used when stripping binaries. See `man strip' for details. STRIP_BINARIES="<%= $pacman::makepkg::strip_binaries %>" #-- Options to be used when stripping shared libraries. See `man strip' for details. STRIP_SHARED="<%= $pacman::makepkg::strip_shared %>" #-- Options to be used when stripping static libraries. See `man strip' for details. STRIP_STATIC="<%= $pacman::makepkg::strip_static %>" #-- Manual (man and info) directories to compress (if zipman is specified) MAN_DIRS=(<%= $pacman::makepkg::man_dirs.join(' ') -%>) #-- Doc directories to remove (if !docs is specified) DOC_DIRS=(<%= $pacman::makepkg::doc_dirs.join(' ') -%>) #-- Files to be removed from all packages (if purge is specified) PURGE_TARGETS=(<%= $pacman::makepkg::purge_targets.join(' ') -%>) #-- Directory to store source code in for debug packages DBGSRCDIR="<%= $pacman::makepkg::dbgsrcdir %>" ######################################################################### # PACKAGE OUTPUT ######################################################################### # # Default: put built package and cached source in build directory # #-- Destination: specify a fixed directory where all packages will be placed <%= if $pacman::makepkg::pkgdest == undef { '#' } %>PKGDEST="<%= $pacman::makepkg::pkgdest %>" #-- Source cache: specify a fixed directory where source files will be cached <%= if $pacman::makepkg::srcdest == undef { '#' } %>SRCDEST="<%= $pacman::makepkg::srcdest %>" #-- Source packages: specify a fixed directory where all src packages will be placed <%= if $pacman::makepkg::srcpkgdest == undef { '#' } %>SRCPKGDEST="<%= $pacman::makepkg::srcpkgdest %>" #-- Log files: specify a fixed directory where all log files will be placed <%= if $pacman::makepkg::logdest == undef { '#' } %>LOGDEST="<%= $pacman::makepkg::logdest %>" #-- Packager: name/email of the person or organization building packages <%= if $pacman::makepkg::packager == undef { '#' } %>PACKAGER="<%= $pacman::makepkg::packager %>" #-- Specify a key to use for package signing <%= if $pacman::makepkg::gpgkey == undef { '#' } %>GPGKEY="<%= $pacman::makepkg::gpgkey %>" ######################################################################### # COMPRESSION DEFAULTS ######################################################################### # COMPRESSGZ=(<%= $pacman::makepkg::compressgz -%>) COMPRESSBZ2=(<%= $pacman::makepkg::compressbz2 -%>) COMPRESSXZ=(<%= $pacman::makepkg::compressxz -%>) COMPRESSZST=(<%= $pacman::makepkg::compresszst -%>) COMPRESSLRZ=(<%= $pacman::makepkg::compresslrz -%>) COMPRESSLZO=(<%= $pacman::makepkg::compresslzo -%>) COMPRESSZ=(<%= $pacman::makepkg::compressz -%>) COMPRESSLZ4=(<%= $pacman::makepkg::compresslz4 -%>) COMPRESSLZ=(<%= $pacman::makepkg::compresslz -%>) ######################################################################### # EXTENSION DEFAULTS ######################################################################### # PKGEXT='<%= $pacman::makepkg::pkgext %>' SRCEXT='<%= $pacman::makepkg::srcext %>' ######################################################################### # OTHER ######################################################################### # #-- Command used to run pacman as root, instead of trying sudo and su <%= if $pacman::makepkg::pacman_auth == undef { '#' } %>PACMAN_AUTH=(<%= $pacman::makepkg::pacman_auth %>)