Date: Tuesday, February 12, 2013 @ 20:10:20 Author: jsteel Revision: 84169
nasm is only for i686 Modified: dgen-sdl/trunk/PKGBUILD ----------+ PKGBUILD | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2013-02-12 18:03:41 UTC (rev 84168) +++ PKGBUILD 2013-02-12 19:10:20 UTC (rev 84169) @@ -12,7 +12,9 @@ url="http://dgen.sourceforge.net" license=('BSD') depends=('sdl' 'libgl' 'libarchive') -makedepends=('nasm') +if test "$CARCH" == i686; then + makedepends=('nasm') +fi source=(http://downloads.sourceforge.net/dgen/$pkgname-$pkgver.tar.gz) md5sums=('81b6f1c4bd612e81a9b8663c38d51890')
