summarylogtreecommitdiffstats
path: root/PKGBUILD
diff options
context:
space:
mode:
authorFelix Buehler2020-05-26 15:25:47 +0200
committerFelix Buehler2020-05-26 15:25:47 +0200
commitcd7e175764ac1c4b7f1d60dec208533065e98ce1 (patch)
tree5300e2f2f0d3052ecb8ac1074d27613c440c979b /PKGBUILD
parent90a85335dccb0bc357a466487ca1a321eeb91b7f (diff)
downloadaur-canon-pixma-mg5200-complete.tar.gz
fix dependecys for x86
Diffstat (limited to 'PKGBUILD')
-rw-r--r--PKGBUILD4
1 files changed, 2 insertions, 2 deletions
diff --git a/PKGBUILD b/PKGBUILD
index 0d1f0a7207d2..7b2656668dfd 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -13,9 +13,9 @@ url='http://www.canon-europe.com/Support/Consumer_Products/products/Fax__Multifu
arch=('i686' 'x86_64')
license=('custom')
install="${pkgname}.install"
-if [[ ${CARCH} = 'x86_64' ]]; then
+if [ ${CARCH} = 'x86_64' ]; then
depends=('lib32-popt' 'lib32-libpng12' 'lib32-libusb-compat' 'lib32-libtiff4' 'lib32-libxml2' 'lib32-gtk2' 'cups')
-elif [[ ${CARCH} = 'i686' ]]; then
+elif [ ${CARCH} = 'i686' ]; then
depends=('popt' 'libpng12' 'libusb-compat' 'libtiff4' 'libxml2' 'gtk2' 'cups')
fi
makedepends=('deb2targz' 'sed')