Renamed upper case variable names to lower case in bldpkg.conf
This commit is contained in:
parent
ed13a09bcf
commit
8b68c42d89
1 changed files with 46 additions and 45 deletions
91
bldpkg.conf
91
bldpkg.conf
|
@ -9,37 +9,37 @@
|
|||
|
||||
# Set the package extension. Makepkg will use this to figure out the
|
||||
# compression utility. Pick one out of tbz/tgz/txz/tlz.
|
||||
PKGEXT="tlz"
|
||||
pkgext="tlz"
|
||||
|
||||
# Set compressor options. These will be exported in the mkfinalpkg function
|
||||
# for makepkg to pickup.
|
||||
SM_GZIPOPTS="-9c"
|
||||
SM_BZIPOPTS="-9c"
|
||||
SM_LZIPOPTS="-0c"
|
||||
SM_XZOPTS="-9c"
|
||||
gzipopts="-9c"
|
||||
bzipopts="-9c"
|
||||
lzipopts="-0c"
|
||||
xzopts="-9c"
|
||||
|
||||
# Set this variable if you wish to be prompted for installing (or upgrading)
|
||||
# the package after it has been built successfully. 0 to disable, 1 to
|
||||
# enable. Ignored for SSB autobuilds.
|
||||
SM_INSTALLPROMPT=0
|
||||
installprompt=0
|
||||
|
||||
# Set this variable if you wish to be prompted for extracting contents of
|
||||
# the newly-built package installer file into a new subdirectory called
|
||||
# "test" within the current source directory the build was invoked from. 0
|
||||
# to disable, 1 to enable. Ignored for SSB autobuilds.
|
||||
SM_EXTRACTPROMPT=0
|
||||
extractprompt=0
|
||||
|
||||
# Whether to use distcc for distributed compilations. 0 to disable, 1 to
|
||||
# enable.
|
||||
SM_GLOBALDISTCC=0
|
||||
globaldistcc=1
|
||||
|
||||
# Whether to use ccache for faster consecutive rebuilds. Set 0 to disable,
|
||||
# 1 to enable.
|
||||
SM_GLOBALCCACHE=0
|
||||
globalccache=1
|
||||
|
||||
# Whether to use sccache for faster consecutive builds. Set 0 to disable,
|
||||
# 1 to enable.
|
||||
SM_GLOBALSCCACHE=0
|
||||
globalsccache=0
|
||||
|
||||
# Typical $PATH layout when using ccache + distcc + gcc, assuming gcc is in
|
||||
# /bin, should be:
|
||||
|
@ -54,19 +54,19 @@ SM_GLOBALSCCACHE=0
|
|||
# Replace distcc with ccache for creating distcc symlinks
|
||||
|
||||
# Distcc binary location
|
||||
SM_DISTCCBINPATH="/bin/distcc"
|
||||
distccbinpath="/bin/distcc"
|
||||
# Distcc symlink paths created for cc/gcc/c++/g++
|
||||
SM_DISTCCSYMPATH="/opt/distcc/bin"
|
||||
distccsympath="/opt/distcc/bin"
|
||||
|
||||
# Ccache binary location
|
||||
SM_CCACHEBINPATH="/bin/ccache"
|
||||
ccachebinpath="/bin/ccache"
|
||||
# Ccache symlink paths created for cc/gcc/c++/g++
|
||||
SM_CCACHESYMPATH="/opt/ccache/bin"
|
||||
ccachesympath="/opt/ccache/bin"
|
||||
|
||||
# Sccache binary location
|
||||
SM_SCCACHEBINPATH="/bin/sccache"
|
||||
sccachebinpath="/bin/sccache"
|
||||
# Scache hardlink paths created for cc/gcc/c++/g++
|
||||
SM_SCCACHEPATH="/opt/sccache/bin"
|
||||
sccachepath="/opt/sccache/bin"
|
||||
|
||||
# Define the distcc timeout period in seconds. This prevents distcc from
|
||||
# falling back to local compiler if a distributed job takes a long time to
|
||||
|
@ -77,60 +77,61 @@ DISTCC_IO_TIMEOUT="1800"
|
|||
# distcc manual for complete info. Must be defined in /etc/hosts unless they
|
||||
# are an IP. Tip: Distcc by default will use only 2 cores on the local
|
||||
# machine.
|
||||
DISTCC_HOSTS="--randomize localhost/3 host0/2,lzo"
|
||||
DISTCC_HOSTS="--randomize localhost/2 host0/2,lzo"
|
||||
|
||||
# Add sum total of the above CPU cores/threads or add your own count
|
||||
# prepended with "-j".
|
||||
SM_CPUTHREADS="-j5"
|
||||
cputhreads="-j4"
|
||||
|
||||
# Declare a parent temporary directory
|
||||
SM_PARENTTMP="/tmp"
|
||||
parenttmp="/tmp"
|
||||
|
||||
# Whether to use tmpfs for the package build. The package source will be
|
||||
# extracted and compiled inside the tmpfs directory and ccache will be
|
||||
# disabled to prevent writes to the disk. 1 to enable, 0 to disable.
|
||||
SM_USETMPFS=0
|
||||
usetmpfs=1
|
||||
|
||||
# Set the tmpfs directory if the above variable is enabled
|
||||
SM_TMPFSDIR="$SM_PARENTTMP/tmpfsdir"
|
||||
#SM_TMPFSDIR="$SM_PARENTTMP/tmpfsdir"
|
||||
tmpfsdir="$parenttmp/tmpfsdir"
|
||||
|
||||
# Define the nontmpfs base directory
|
||||
SM_NONTMPFSDIR="$SM_PARENTTMP/sml"
|
||||
nontmpfsdir="$parenttmp/sml"
|
||||
|
||||
# Directory where the final package installer, example:
|
||||
# openssh-8.1-x86_64-1sml.tlz should be placed in. Again, should be outside
|
||||
# tmpfs dir. Also declared and defined in autobuild section file, so values
|
||||
# may differ. This is for manual builds.
|
||||
PKGDEST=${PKGDEST:-$SM_PARENTTMP/sml/packages/}
|
||||
pkgdest=${pkgdest:-$parenttmp/sml/packages/}
|
||||
|
||||
# Whether you want to preserve the build directory which contains the
|
||||
# extracted source, for example /tmp/sml/openssh.src/openssh-8.1.
|
||||
# SM_USETMPFS, if set to 1, will auto-reset this variable to 0 and the build
|
||||
# usetmpfs, if set to 1, will auto-reset this variable to 0 and the build
|
||||
# directory will be deleted. Set 1 to preserve it, 0 to rm -rf it
|
||||
# automatically at the end of each build
|
||||
SM_PRESERVEBUILDDIR=1
|
||||
preservebuilddir=1
|
||||
|
||||
# Whether you want to preserve the package directory. for example
|
||||
# /tmp/sml/package-openssh SM_USETMPFS, if set to 1, will auto-reset this
|
||||
# variable to 0 and the package directory will be deleted. Set 1 to preserve
|
||||
# it, 0 to rm -rf it automatically at the end of each build
|
||||
SM_PRESERVEPACKAGEDIR=1
|
||||
preservepackagedir=1
|
||||
|
||||
# Whether to show build summary. Set to 1 to enable, 0 to disable.
|
||||
SM_SHOWSUMMARY=0
|
||||
showsummary=1
|
||||
|
||||
# Whether to show colours in the build summary. Set 1 to enable, 0 to
|
||||
# disable. Also, only show colours if the build is invoked manually and not
|
||||
# through the SSB autobuild system where logging is automatic or when
|
||||
# logging is invoked using log ./<package.SMBuild>.
|
||||
[ -z "$SM_COLOURS" ] && SM_COLOURS=1
|
||||
[ -z "$colours" ] && colours=1
|
||||
|
||||
# Define whether to check for swap. 1 to enable, 0 to disable.
|
||||
SM_SWAPCHECK=0
|
||||
swapcheck=0
|
||||
|
||||
# If above variable is set to 1, define minimum swap size required for huge
|
||||
# compiles in KiB
|
||||
SM_SWAPSIZE=2048000
|
||||
swapsize=2048000
|
||||
|
||||
# Define your compilers here. They must be in $PATH *AFTER* ccache and
|
||||
# distcc directories
|
||||
|
@ -142,33 +143,33 @@ export CC CXX
|
|||
# https://github.com/sakaki-/gentoo-on-rpi-64bit/blob/master/reference/compile_run_benchmarks.sh
|
||||
# https://www.raspberrypi.org/forums/viewtopic.php?t=11629
|
||||
# Set debug flag
|
||||
SM_GCCDEBUG="-g3"
|
||||
gccdebug="-g3"
|
||||
# For aarch64
|
||||
# aarch64-musl-linux is not recognised by most configure scripts and I haven't
|
||||
# seen any compile except for gmp going wrong with arm-musl-linux
|
||||
SM_AARCH64HOSTDIST="--host=arm-musl-linux"
|
||||
SM_AARCH64BUILDDIST="--build=arm-musl-linux"
|
||||
SM_AARCH64CFLAGS="-O2 -fPIC -pipe -march=armv8-a+crc -mtune=cortex-a53"
|
||||
aarch64hostdist="--host=arm-musl-linux"
|
||||
aarch64builddist="--build=arm-musl-linux"
|
||||
aarch64cflags="-O2 -fPIC -pipe -march=armv8-a+crc -mtune=cortex-a53"
|
||||
# For x86_64
|
||||
SM_X8664BUILDDIST="--build=x86_64-musl-linux"
|
||||
SM_X8664CFLAGS="-O2 -fPIC -pipe"
|
||||
x8664builddist="--build=x86_64-musl-linux"
|
||||
x8664cflags="-O2 -fPIC -pipe"
|
||||
|
||||
# Set path to configure cache file that contains predefined answers to several
|
||||
# tests autoconf scripts run. Credits: Sabotage Linux.
|
||||
SM_CONFIGSITE="/etc/config.cache"
|
||||
configsite="/etc/config.cache"
|
||||
|
||||
# Whether to verify tarball checksums contained in checksums.$APP files inside
|
||||
# source directories. Path to smlinux public key file and signify binaries
|
||||
# handled by the mkchecksums script.
|
||||
SM_VERIFYCHECKSUMS=0
|
||||
verifychecksums=0
|
||||
|
||||
# Whether to check for build/runtime dependencies
|
||||
SM_CHECKDEPENDENCIES=0
|
||||
checkdependencies=0
|
||||
|
||||
# This array lists the packages whose sources will not be extracted and
|
||||
# compiled inside tmpfs, if tmpfs is <= 2GB. If your tmpfs is >= 2GB, empty
|
||||
# out this entire list.
|
||||
SM_TMPFSEXCEPTIONLIST=( firefox palemoon qemu dovecot gdb gimp gnumeric \
|
||||
tmpfsexceptionlist=( firefox palemoon qemu dovecot gdb gimp gnumeric \
|
||||
gtk+2 gtk+3 guile llvm mariadb mesa mesa-demos mupdf perl postfix python2 \
|
||||
python3 rtorrent spice python-lxml qtbase kernel libreoffice mono \
|
||||
qtwebengine kernel-source rust )
|
||||
|
@ -176,7 +177,7 @@ qtwebengine kernel-source rust )
|
|||
# This array lists the packages which require additional swap for
|
||||
# compilation to prevent the system from becoming completely unresponsive
|
||||
# for want of more memory.
|
||||
SM_PACKAGESREQUIRINGSWAP=( firefox palemoon qemu gdb gimp gnumeric gtk+2 \
|
||||
packagesrequiringswap=( firefox palemoon qemu gdb gimp gnumeric gtk+2 \
|
||||
gtk+3 guile llvm mariadb mesa mupdf libtorrent rtorrent qtbase \
|
||||
qtwebengine )
|
||||
|
||||
|
@ -185,11 +186,11 @@ qtwebengine )
|
|||
# expanded as an argument for rm -rf holds, so prevention is better.
|
||||
# Populate this list appropriately and use it inside an if/else whenever
|
||||
# rm -rf is about to be called.
|
||||
SM_PROTECTEDDIRECTORIES=( "/bin" "/boot" "/dev" "/etc" "/home" "/include" \
|
||||
"/lib" "/lib64" "/libexec" "/local" "/man" "/media" "/mnt" "/opt" "/proc" \
|
||||
"/root" "/run" "/sbin" "/share" "/srv" "/sys" "/tmp" "/usr" "/var" )
|
||||
protecteddirectories=( "/bin" "/boot" "/dev" "/etc" "/home" "/include" \
|
||||
"/lib" "/libexec" "/local" "/man" "/media" "/mnt" "/opt" "/proc" \
|
||||
"/root" "/run" "/sbin" "/share" "/srv" "/sys" "/usr" "/var" )
|
||||
|
||||
# Whether to output application build status in HTML format. Set 1 to enable,
|
||||
# 0 to disable.
|
||||
SM_HTMLOUTPUT=0
|
||||
htmloutput=1
|
||||
|
||||
|
|
Loading…
Reference in a new issue