Rename pmtransflag_t to alpm_transflag_t
[pacman-ng.git] / etc / makepkg.conf.in
blobd3b7d3d3db756c2037b7a3366ed6e354800fb7b2
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/curl -fC - --ftp-pasv --retry 3 --retry-delay 3 -o %o %u'
12           'http::/usr/bin/curl -fLC - --retry 3 --retry-delay 3 -o %o %u'
13           'https::/usr/bin/curl -fLC - --retry 3 --retry-delay 3 -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 @CARCH@
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 #LDFLAGS=""
35 #-- Make Flags: change this for DistCC/SMP systems
36 #MAKEFLAGS="-j2"
38 #########################################################################
39 # BUILD ENVIRONMENT
40 #########################################################################
42 # Defaults: BUILDENV=(fakeroot !distcc color !ccache check !sign)
43 #  A negated environment option will do the opposite of the comments below.
45 #-- fakeroot: Allow building packages as a non-root user
46 #-- distcc:   Use the Distributed C/C++/ObjC compiler
47 #-- color:    Colorize output messages
48 #-- ccache:   Use ccache to cache compilation
49 #-- check:    Run the check() function if present in the PKGBUILD
50 #-- sign:     Generate PGP signature file
52 BUILDENV=(fakeroot !distcc color !ccache check !sign)
54 #-- If using DistCC, your MAKEFLAGS will also need modification. In addition,
55 #-- specify a space-delimited list of hosts running in the DistCC cluster.
56 #DISTCC_HOSTS=""
58 #-- Specify a directory for package building.
59 #BUILDDIR=/tmp/makepkg
61 #########################################################################
62 # GLOBAL PACKAGE OPTIONS
63 #   These are default values for the options=() settings
64 #########################################################################
66 # Default: OPTIONS=(strip docs libtool emptydirs zipman purge !upx)
67 #  A negated option will do the opposite of the comments below.
69 #-- strip:     Strip symbols from binaries/libraries
70 #-- docs:      Save doc directories specified by DOC_DIRS
71 #-- libtool:   Leave libtool (.la) files in packages
72 #-- emptydirs: Leave empty directories in packages
73 #-- zipman:    Compress manual (man and info) pages in MAN_DIRS with gzip
74 #-- purge:     Remove files specified by PURGE_TARGETS
75 #-- upx:       Compress binary executable files using UPX
77 OPTIONS=(strip docs libtool emptydirs zipman purge !upx)
79 #-- File integrity checks to use. Valid: md5, sha1, sha256, sha384, sha512
80 INTEGRITY_CHECK=(md5)
81 #-- Options to be used when stripping binaries. See `man strip' for details.
82 STRIP_BINARIES="@STRIP_BINARIES@"
83 #-- Options to be used when stripping shared libraries. See `man strip' for details.
84 STRIP_SHARED="@STRIP_SHARED@"
85 #-- Options to be used when stripping static libraries. See `man strip' for details.
86 STRIP_STATIC="@STRIP_STATIC@"
87 #-- Manual (man and info) directories to compress (if zipman is specified)
88 MAN_DIRS=({usr{,/local}{,/share},opt/*}/{man,info})
89 #-- Doc directories to remove (if !docs is specified)
90 DOC_DIRS=(usr/{,local/}{,share/}{doc,gtk-doc} opt/*/{doc,gtk-doc})
91 #-- Files to be removed from all packages (if purge is specified)
92 PURGE_TARGETS=(usr/{,share}/info/dir .packlist *.pod)
94 #########################################################################
95 # PACKAGE OUTPUT
96 #########################################################################
98 # Default: put built package and cached source in build directory
100 #-- Destination: specify a fixed directory where all packages will be placed
101 #PKGDEST=/home/packages
102 #-- Source cache: specify a fixed directory where source files will be cached
103 #SRCDEST=/home/sources
104 #-- Source packages: specify a fixed directory where all src packages will be placed
105 #SRCPKGDEST=/home/srcpackages
106 #-- Packager: name/email of the person or organization building packages
107 #PACKAGER="John Doe <john@doe.com>"
108 #-- Specify a key to use for package signing
109 #GPGKEY=""
111 #########################################################################
112 # EXTENSION DEFAULTS
113 #########################################################################
115 # WARNING: Do NOT modify these variables unless you know what you are
116 #          doing.
118 PKGEXT='@PKGEXT@'
119 SRCEXT='@SRCEXT@'
121 # vim: set ft=sh ts=2 sw=2 et: