makepkg.conf: make keeping docs the default
[pacman-ng.git] / etc / makepkg.conf.in
blobbb2018f17d828f78542e07e88f2ae834599d9f97
2 # @sysconfdir@/makepkg.conf
5 #########################################################################
6 # SOURCE ACQUISITION
7 #########################################################################
9 #-- The download utilities that makepkg should use to acquire sources
10 #  Format: 'protocol::agent'
11 DLAGENTS=('ftp::/usr/bin/wget -c --passive-ftp -t 3 --waitretry=3 -O %o %u'
12           'http::/usr/bin/wget -c -t 3 --waitretry=3 -O %o %u'
13           'https::/usr/bin/wget -c -t 3 --waitretry=3 --no-check-certificate -O %o %u'
14           'rsync::/usr/bin/rsync -z %u %o'
15           'scp::/usr/bin/scp -C %u %o')
17 # Other common tools:
18 # /usr/bin/snarf
19 # /usr/bin/lftpget -c
20 # /usr/bin/curl
22 #########################################################################
23 # ARCHITECTURE, COMPILE FLAGS
24 #########################################################################
26 CARCH="@CARCH@"
27 CHOST="@CHOST@"
29 #-- Exclusive: will only run on @CARCHFLAGS@
30 # -march (or -mcpu) builds exclusively for an architecture
31 # -mtune optimizes for an architecture, but builds for whole processor family
32 CFLAGS="@CARCHFLAGS@-mtune=generic -O2 -pipe"
33 CXXFLAGS="@CARCHFLAGS@-mtune=generic -O2 -pipe"
34 #-- Make Flags: change this for DistCC/SMP systems
35 #MAKEFLAGS="-j2"
37 #########################################################################
38 # BUILD ENVIRONMENT
39 #########################################################################
41 # Defaults: BUILDENV=(fakeroot !distcc color !ccache !xdelta)
42 #  A negated environment option will do the opposite of the comments below.
44 #-- fakeroot: Allow building packages as a non-root user
45 #-- distcc:   Use the Distributed C/C++/ObjC compiler
46 #-- color:    Colorize output messages
47 #-- ccache:   Use ccache to cache compilation
48 #-- xdelta:   Generate delta patch from previous to current package
50 BUILDENV=(fakeroot !distcc color !ccache !xdelta)
52 #-- If using DistCC, your MAKEFLAGS will also need modification. In addition,
53 #-- specify a space-delimited list of hosts running in the DistCC cluster.
54 #DISTCC_HOSTS=""
56 #########################################################################
57 # GLOBAL PACKAGE OPTIONS
58 #   These are default values for the options=() settings
59 #########################################################################
61 # Default: OPTIONS=(strip docs libtool emptydirs zipman)
62 #  A negated option will do the opposite of the comments below.
64 #-- strip:     Strip symbols from binaries/libraries
65 #-- docs:      Save doc and info directories
66 #-- libtool:   Leave libtool (.la) files in packages
67 #-- emptydirs: Leave empty directories in packages
68 #-- zipman:    Compress manpages with gzip
70 OPTIONS=(strip docs libtool emptydirs zipman)
72 #-- File integrity checks to use. Valid: md5, sha1, sha256, sha384, sha512
73 INTEGRITY_CHECK=(md5)
74 #-- Info and doc directories to remove (if option set correctly above)
75 DOC_DIRS=(usr/{,share/}{info,doc,gtk-doc} opt/*/{info,doc,gtk-doc})
77 #########################################################################
78 # PACKAGE OUTPUT
79 #########################################################################
81 # Default: put built package and cached source in build directory
83 #-- Destination: specify a fixed directory where all packages will be placed
84 #PKGDEST=/home/packages
85 #-- Source cache: specify a fixed directory where source files will be cached
86 #SRCDEST=/home/sources
87 #-- Packager: name/email of the person or organization building packages
88 #PACKAGER="John Doe <john@doe.com>"
90 #########################################################################
91 # BUILDSCRIPT/EXTENSION DEFAULTS
92 #########################################################################
94 # WARNING: Do NOT modify these variables unless you know what you are
95 #          doing.
97 BUILDSCRIPT='PKGBUILD'
98 PKGEXT='@PKGEXT@'
99 SRCEXT='@SRCEXT@'
100 DB_COMPRESSION='gz'
101 DB_CHECKSUMS=(md5)
103 # vim: set ft=sh ts=2 sw=2 et: