summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Fasching2019-08-05 18:42:53 +0200
committerAlexander Fasching2019-08-05 18:42:53 +0200
commit73d589475d51ae22141c14ad4484bf8e581b2d85 (patch)
treef27049c4dc0d0a3caa7a3e36332636eecb4735a5
parent634169990469173de5c08f4e40fd95f9ff607220 (diff)
downloadaur-73d589475d51ae22141c14ad4484bf8e581b2d85.tar.gz
Make package architecture dependent
Package is linked against libsdl2 and others, so it has to be compiled for each architecture separately.
-rw-r--r--.SRCINFO3
-rw-r--r--PKGBUILD2
2 files changed, 3 insertions, 2 deletions
diff --git a/.SRCINFO b/.SRCINFO
index b12156963918..601474b2ab3c 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -3,7 +3,8 @@ pkgbase = python-pyxel
pkgver = 1.2.0
pkgrel = 1
url = https://github.com/kitao/pyxel
- arch = any
+ arch = i686
+ arch = x86_64
license = MIT
makedepends = git
makedepends = python-setuptools
diff --git a/PKGBUILD b/PKGBUILD
index aec5445f9260..6cba10d771f9 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -5,7 +5,7 @@ pkgname=python-pyxel
pkgver=1.2.0
pkgrel=1
pkgdesc='Retro game development environment'
-arch=('any')
+arch=('i686' 'x86_64')
url='https://github.com/kitao/pyxel'
license=('MIT')
depends=('portaudio' 'python-glfw' 'python-numpy' 'python-opengl'