cleaned up format a bit, added global KEEPDOCS and NOSTRIP flags

This commit is contained in:
Judd Vinet 2006-01-22 02:17:39 +00:00
parent d0fb27cef4
commit 59c82a0a94

View file

@ -2,41 +2,58 @@
# /etc/makepkg.conf # /etc/makepkg.conf
# #
# The FTP/HTTP download utility that makepkg should use to acquire sources #########################################################################
# SOURCE ACQUISITION
#########################################################################
#
#-- The FTP/HTTP download utility that makepkg should use to acquire sources
export FTPAGENT="/usr/bin/wget --continue --passive-ftp --tries=3 --waitretry=3 --no-check-certificate" export FTPAGENT="/usr/bin/wget --continue --passive-ftp --tries=3 --waitretry=3 --no-check-certificate"
#export FTPAGENT="/usr/bin/snarf" #export FTPAGENT="/usr/bin/snarf"
#export FTPAGENT="/usr/bin/lftpget -c" #export FTPAGENT="/usr/bin/lftpget -c"
#########################################################################
# ARCHITECTURE, COMPILE FLAGS
#########################################################################
#
export CARCH="i686" export CARCH="i686"
export CHOST="i686-pc-linux-gnu" export CHOST="i686-pc-linux-gnu"
#-- Exclusive: will only run on i686 or higher (P6, Athlon)
# Pentium Pro/Pentium II/Pentium III+/Pentium 4/Athlon exclusive (binaries
# will use the P6 instruction set and only run on P6+ systems)
export CFLAGS="-march=i686 -O2 -pipe" export CFLAGS="-march=i686 -O2 -pipe"
export CXXFLAGS="-march=i686 -O2 -pipe" export CXXFLAGS="-march=i686 -O2 -pipe"
# Pentium Pro/Pentium II/Pentium III+/Pentium 4/Athlon optimized (but binaries #-- Optimized: will run on any x86, but optimized for i686
# will run on any x86 system)
#export CFLAGS="-mcpu=i686 -O2 -pipe" #export CFLAGS="-mcpu=i686 -O2 -pipe"
#export CXXFLAGS="-mcpu=i686 -O2 -pipe" #export CXXFLAGS="-mcpu=i686 -O2 -pipe"
#-- Make Flags: change this for DistCC/SMP systems
# SMP Systems
#export MAKEFLAGS="-j2" #export MAKEFLAGS="-j2"
# Enable fakeroot for building packages as a non-root user #########################################################################
# BUILD ENVIRONMENT
#########################################################################
#
#-- Fakeroot: for building packages as a non-root user
export USE_FAKEROOT="y" export USE_FAKEROOT="y"
#-- DistCC: a distributed C/C++/ObjC compiler (modify MAKEFLAGS too)
# Enable distributed C/C++/ObjC compiler
# Also modify MAKEFLAGS to include -jN, where N = 2 * (numCPUs+1)
export DISTCC="n" export DISTCC="n"
# Space-delimited list of hosts running in the distcc cluster #-- A space-delimited list of hosts running in the DistCC cluster
export DISTCC_HOSTS="" export DISTCC_HOSTS=""
#-- Colorized output messages
# Enable colorized output messages
export USE_COLOR="y" export USE_COLOR="y"
# Specify a fixed directory where all packages will be placed #########################################################################
#export PKGDEST=/home/packages # GLOBAL PACKAGE OPTIONS
#########################################################################
#
#-- Don't strip symbols from binaries/libraries
#export NOSTRIP="1"
#-- Keep doc and info directories
#export KEEPDOCS="1"
# If you want your name to show up in the packages you build, set this. #########################################################################
# PACKAGE OUTPUT
#########################################################################
#
#-- Destination: specify a fixed directory where all packages will be placed
#export PKGDEST=/home/packages
#-- Packager: name/email of the person or organization building packages
#export PACKAGER="John Doe <john@doe.com>" #export PACKAGER="John Doe <john@doe.com>"