From e9abf1e70468001cac0c00e07a97ce3133803643 Mon Sep 17 00:00:00 2001 From: Alison Watson Date: Wed, 19 Jun 2019 05:10:09 -0400 Subject: [PATCH] makepkg: make things faster and better organized --- build-system/makepkg.conf | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/build-system/makepkg.conf b/build-system/makepkg.conf index 66ed4b5..495ac60 100644 --- a/build-system/makepkg.conf +++ b/build-system/makepkg.conf @@ -1,6 +1,10 @@ -CFLAGS="-march=native -O2 -pipe -fstack-protector-strong -fno-plt" +CFLAGS="-mtune=native -march=native -O2 -pipe -fstack-protector-strong -fno-plt -w" +COMPRESSBZ2=(pbzip2 -c -f) +COMPRESSGZ=(pigz -c -f -n) +COMPRESSXZ=(xz -c -z - --threads=0) CXXFLAGS="${CFLAGS}" MAKEFLAGS="-j12" +PACKAGER="Alison Watson " +PKGDEST="$HOME/bin/packages" PKGEXT='.pkg.tar' -COMPRESSXZ=(xz -c -z - --threads=0) -COMPRESSGZ=(pigz -c -f -n) +SRCDEST="$HOME/bin/sources"