diff options
author | Felix Buehler | 2020-05-26 15:25:47 +0200 |
---|---|---|
committer | Felix Buehler | 2020-05-26 15:25:47 +0200 |
commit | cd7e175764ac1c4b7f1d60dec208533065e98ce1 (patch) | |
tree | 5300e2f2f0d3052ecb8ac1074d27613c440c979b /PKGBUILD | |
parent | 90a85335dccb0bc357a466487ca1a321eeb91b7f (diff) | |
download | aur-canon-pixma-mg5200-complete.tar.gz |
fix dependecys for x86
Diffstat (limited to 'PKGBUILD')
-rw-r--r-- | PKGBUILD | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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') |