2024-04-22 05:46:14 -04:00
|
|
|
|
|
|
|
# Global Options
|
|
|
|
|
|
|
|
OPTIONS=(strip docs !libtool !staticlibs emptydirs zipman purge debug lto autodeps)
|
|
|
|
MAKEFLAGS="-j{{ (ansible_processor_nproc - 1) }}"
|
|
|
|
PACKAGER="{{ aur_repo_packager_name }} <{{ aur_repo_packager_email }}>"
|
|
|
|
|
|
|
|
# Build Environment
|
|
|
|
|
|
|
|
BUILDDIR=/tmp/build
|
|
|
|
BUILDENV=(!distcc color !ccache check sign)
|
|
|
|
GPGKEY={{ aur_repo_key_thumbprint }}
|
|
|
|
|
|
|
|
# Outputs
|
|
|
|
|
|
|
|
PKGDEST={{ aur_repo_dir }}/packages
|
|
|
|
SRCDEST={{ aur_repo_dir }}/sources
|
|
|
|
SRCPKGDEST={{ aur_repo_dir }}/srcpackages
|
|
|
|
LOGDEST=/var/log/makepkg
|
2024-04-22 08:49:49 -04:00
|
|
|
PKGEXT=".pkg.tar"
|
|
|
|
SRCEXT=".src.tar"
|