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-02-27 08:26:02 +00:00
|
|
|
# the top-level directory of all your PKGBUILDs
|
|
|
|
export ABSROOT="/usr/abs"
|
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-02-27 08:26:02 +00:00
|
|
|
# Pentium Pro/Pentium II/Pentium III+/Pentium 4/Athlon optimized (but binaries
|
|
|
|
# will run on any x86 system)
|
|
|
|
#export CHOST="i686-pc-linux-gnu"
|
|
|
|
#export CFLAGS="-mcpu=i686 -O2 -pipe"
|
|
|
|
#export CXXFLAGS="-mcpu=i686 -O2 -pipe"
|
|
|
|
|
|
|
|
# Pentium Pro/Pentium II/Pentium III+/Pentium 4/Athlon exclusive (binaries
|
|
|
|
# will use the P6 instruction set and only run on P6+ systems)
|
|
|
|
export CHOST="i686-pc-linux-gnu"
|
|
|
|
export CFLAGS="-march=i686 -O2 -pipe"
|
|
|
|
export CXXFLAGS="-march=i686 -O2 -pipe"
|
|
|
|
|
|
|
|
# SMP Systems
|
2002-08-09 18:03:48 +00:00
|
|
|
#export MAKEFLAGS="-j 2"
|
|
|
|
|
2003-02-27 08:26:02 +00:00
|
|
|
# if you want your name to show up in the packages you build, set this.
|
|
|
|
#export PACKAGER="John Doe <john@doe.com>"
|
2003-03-17 19:36:48 +00:00
|
|
|
|