index : packages | |
Archlinux32 package modifications | gitolite user |
summaryrefslogtreecommitdiff |
author | Andreas Baumann <mail@andreasbaumann.cc> | 2021-04-11 16:05:54 +0200 |
---|---|---|
committer | Andreas Baumann <mail@andreasbaumann.cc> | 2021-04-11 16:05:54 +0200 |
commit | 081a784ed03060e3887425670167f1c2806532df (patch) | |
tree | a081c728c3ce961a367ddce72e71c6be813279ea /extra/libde265/PKGBUILD | |
parent | 9a11ddf5a29e263f19887e35b26e46699fb9b847 (diff) |
-rw-r--r-- | extra/libde265/PKGBUILD | 11 |
diff --git a/extra/libde265/PKGBUILD b/extra/libde265/PKGBUILD index fa729da7..9ec3baa1 100644 --- a/extra/libde265/PKGBUILD +++ b/extra/libde265/PKGBUILD @@ -1,3 +1,13 @@ +# no SSE on i486 +if [ "$CARCH" = 'i486' ]; then + eval "$( + declare -f build | \ + sed ' + s@./configure@./configure --disable-sse@ + ' + )" +fi + # break cycle with Qt on i486 if [ "$CARCH" = 'i486' ]; then makedepends=(${makedepends[@]//qt5-base/}) @@ -8,3 +18,4 @@ if [ "$CARCH" = 'i486' ]; then ' )" fi + |