mirror of
https://github.com/rwinkhart/artix-install-script.git
synced 2026-08-28 04:46:27 -04:00
Re-implemented custom makepkg.conf
This commit is contained in:
+1
-1
@@ -53,7 +53,7 @@ echo "permit persist keepenv $username as root" > /etc/doas.conf
|
||||
ln -s /usr/bin/doas /usr/bin/sudo
|
||||
|
||||
# misc. configuration
|
||||
#curl https://raw.githubusercontent.com/rwinkhart/artix-install-script/main/config-files/makepkg.conf -o /etc/makepkg.conf
|
||||
curl https://raw.githubusercontent.com/rwinkhart/artix-install-script/main/config-files/makepkg.conf -o /etc/makepkg.conf
|
||||
curl https://raw.githubusercontent.com/rwinkhart/artix-install-script/main/config-files/bashrc -o /home/"$username"/.bashrc
|
||||
chown "$username":"$users" /home/"$username"/.bashrc
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
#!/hint/bash
|
||||
#
|
||||
# /etc/makepkg.conf - Universal-ish Arch Installer 12/14/2021
|
||||
# /etc/makepkg.conf - rwinkhart/artix-install-script 06/26/2022
|
||||
#
|
||||
|
||||
#########################################################################
|
||||
@@ -38,7 +38,7 @@ CHOST="x86_64-pc-linux-gnu"
|
||||
|
||||
#-- Compiler and Linker Flags
|
||||
#CPPFLAGS=""
|
||||
CFLAGS="-march=x86-64 -mtune=generic -O2 -pipe -fno-plt -fexceptions \
|
||||
CFLAGS="-march=native -mtune=native -O2 -pipe -fno-plt -fexceptions \
|
||||
-Wp,-D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security \
|
||||
-fstack-clash-protection -fcf-protection"
|
||||
CXXFLAGS="$CFLAGS -Wp,-D_GLIBCXX_ASSERTIONS"
|
||||
@@ -133,8 +133,8 @@ DBGSRCDIR="/usr/src/debug"
|
||||
# COMPRESSION DEFAULTS
|
||||
#########################################################################
|
||||
#
|
||||
COMPRESSGZ=(pigz -c -f -n)
|
||||
COMPRESSBZ2=(pbzip2 -c -f)
|
||||
COMPRESSGZ=(gzip -c -f -n)
|
||||
COMPRESSBZ2=(bzip2 -c -f)
|
||||
COMPRESSXZ=(xz -c -z --threads=0 -)
|
||||
COMPRESSZST=(zstd -c -z -q --threads=0 -)
|
||||
COMPRESSLRZ=(lrzip -q)
|
||||
|
||||
Reference in New Issue
Block a user