Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/extra/gimp
diff options
context:
space:
mode:
authorAndreas Baumann <mail@andreasbaumann.cc>2023-04-02 12:15:12 +0200
committerAndreas Baumann <mail@andreasbaumann.cc>2023-04-02 12:15:12 +0200
commitcd2203daf6609e773931dd27cb5f6ba0ade67940 (patch)
tree10f25cb8b2418d142916a7619c50763109c86799 /extra/gimp
parentab70d889830d64c6ff6e8452e5c0e63c2bf1910d (diff)
extra/gimp: disabled libjxl on i686 and i486
Diffstat (limited to 'extra/gimp')
-rw-r--r--extra/gimp/PKGBUILD4
1 files changed, 4 insertions, 0 deletions
diff --git a/extra/gimp/PKGBUILD b/extra/gimp/PKGBUILD
new file mode 100644
index 00000000..0c175d94
--- /dev/null
+++ b/extra/gimp/PKGBUILD
@@ -0,0 +1,4 @@
+# no libjxr on i686/i486
+if [ "${CARCH}" = "i686" -o "${CARCH}" = "i486" ]; then
+ depends=(${depends[@]//libjxl/})
+fi