diff options
author | Tharre <tharre3@gmail.com> | 2015-02-16 16:16:31 +0100 |
---|---|---|
committer | Tharre <tharre3@gmail.com> | 2015-02-16 16:16:31 +0100 |
commit | 64acc286c43aa97115bdec447d4a0e3e8c11a4d1 (patch) | |
tree | c11dd3cd6022929ad71d1ae7ec085bc3d9c98cbd | |
parent | c6364f8447329cc339657d2c05c1933b914c6cf1 (diff) | |
download | pkgbuilds-64acc286c43aa97115bdec447d4a0e3e8c11a4d1.tar.gz pkgbuilds-64acc286c43aa97115bdec447d4a0e3e8c11a4d1.tar.xz pkgbuilds-64acc286c43aa97115bdec447d4a0e3e8c11a4d1.zip |
Use depends_* for architecture-specific deps
-rw-r--r-- | the-binding-of-isaac/PKGBUILD | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/the-binding-of-isaac/PKGBUILD b/the-binding-of-isaac/PKGBUILD index 39234c9..6bdaf46 100644 --- a/the-binding-of-isaac/PKGBUILD +++ b/the-binding-of-isaac/PKGBUILD @@ -9,11 +9,10 @@ url="http://www.bindingofisaac.com" license=('custom: "commercial"') arch=('i686' 'x86_64') _gamepkg="the_binding_of_isaac_wrath_of_the_lamb-linux.tar.gz" - -[ "${CARCH}" = "x86_64" ] && depends=('lib32-sqlite3' 'lib32-libidn' 'lib32-libxt' 'lib32-libxxf86vm' 'lib32-gtk2' 'lib32-curl') \ -&& optdepends=('lib32-libvdpau: For flash player hardware acceleration') -[ "${CARCH}" = "i686" ] && depends=('sqlite3' 'libidn' 'libxt' 'libxxf86vm' 'gtk2' 'nss' 'curl')\ -&& optdepends=('libvdpau: For flash player hardware acceleration') +depends_x86_64=('lib32-sqlite3' 'lib32-libidn' 'lib32-libxt' 'lib32-libxxf86vm' 'lib32-gtk2' 'lib32-curl') +optdepends_x86_64=('lib32-libvdpau: For flash player hardware acceleration') +depends_i686=('sqlite3' 'libidn' 'libxt' 'libxxf86vm' 'gtk2' 'nss' 'curl') +optdepends_i686=('libvdpau: For flash player hardware acceleration') options=(!strip) # You can download the Humble Indie Bundle file manually, or you can configure |