pacman/etc/makepkg.conf

37 lines
1.1 KiB
Text
Raw Normal View History

2002-02-25 19:23:38 +00:00
#
2002-08-09 18:03:48 +00:00
# /etc/makepkg.conf
2002-02-25 19:23:38 +00:00
#
2003-03-17 19:36:48 +00:00
# The FTP/HTTP download utility that makepkg should use to acquire sources
export FTPAGENT="/usr/bin/wget --continue --passive-ftp --tries=3 --waitretry=3"
#export FTPAGENT="/usr/bin/snarf"
#export FTPAGENT="/usr/bin/lftpget -c"
2003-11-25 02:02:36 +00:00
export CARCH="i686"
export CHOST="i686-pc-linux-gnu"
2003-02-27 08:26:02 +00:00
# Pentium Pro/Pentium II/Pentium III+/Pentium 4/Athlon exclusive (binaries
# will use the P6 instruction set and only run on P6+ systems)
2005-08-19 22:41:20 +00:00
export CFLAGS="-march=i686 -O2 -pipe"
export CXXFLAGS="-march=i686 -O2 -pipe"
2003-09-03 02:09:29 +00:00
# Pentium Pro/Pentium II/Pentium III+/Pentium 4/Athlon optimized (but binaries
# will run on any x86 system)
#export CFLAGS="-mcpu=i686 -O2 -pipe"
#export CXXFLAGS="-mcpu=i686 -O2 -pipe"
2003-02-27 08:26:02 +00:00
# SMP Systems
2002-08-09 18:03:48 +00:00
#export MAKEFLAGS="-j 2"
2003-09-03 02:09:29 +00:00
# Enable fakeroot for building packages as a non-root user
export USE_FAKEROOT="y"
2003-12-21 01:34:32 +00:00
# Enable colorized output messages
2005-06-10 21:31:25 +00:00
export USE_COLOR="y"
2003-12-21 01:34:32 +00:00
2004-04-29 19:43:18 +00:00
# Specify a fixed directory where all packages will be placed
#export PKGDEST=/home/packages
# If you want your name to show up in the packages you build, set this.
2003-02-27 08:26:02 +00:00
#export PACKAGER="John Doe <john@doe.com>"
2003-03-17 19:36:48 +00:00