You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
417 B
23 lines
417 B
# vim: ft=sh |
|
|
|
# Packager Info |
|
source "$DOTFILES/etc/user-info" |
|
PACKAGER="$REALNAME <$EMAIL>" |
|
|
|
# integrity |
|
INTEGRITY_CHECK=(sha512 sha256) |
|
|
|
# Optimizations |
|
function fix_march { |
|
echo $@ | sed 's/-march=[\w-]+ -mtune=\w+/-march=native/' |
|
} |
|
|
|
CFLAGS="`fix_march $CFLAGS`" |
|
CXXFLAGS="`fix_march $CXXFLAGS`" |
|
LDFLAGS="$LDFLAGS" |
|
|
|
MAKEFLAGS="-j${MAKEPKG_MAKETHREADS:-`nproc`}" |
|
|
|
# Store stuff |
|
source "$DOTFILES/etc/aur.conf" |
|
|
|
|