Source: bomberclone Version: 0.11.9-5 Tags: patch If you're making changes to this package anyway, perhaps you could make it build on arm64 (and also build it from the real source as opposed to generated files such as "configure").
There's information here: https://wiki.debian.org/Autoreconf I found that "--with autoreconf" didn't work, perhaps because bits of the source are incompatible with modern automake, but "--with autotools-dev" (the attached patch) did work. However, I didn't test in a fresh chroot so no guarantees! Perhaps you really ought to make it work "--with autoreconf" ...
diff -ru bomberclone-0.11.9.orig/debian/control bomberclone-0.11.9/debian/control --- bomberclone-0.11.9.orig/debian/control +++ bomberclone-0.11.9/debian/control @@ -2,7 +2,7 @@ Section: games Priority: extra Maintainer: Peter Spiess-Knafl <d...@spiessknafl.at> -Build-Depends: debhelper (>= 9), autotools-dev, libsdl1.2-dev, libsdl-mixer1.2-dev, libsdl-image1.2-dev, findutils (>= 4.1.7-2), docbook-to-man, libpng-dev, libjpeg-dev +Build-Depends: debhelper (>= 9), autotools-dev, libsdl1.2-dev, libsdl-mixer1.2-dev, libsdl-image1.2-dev, findutils (>= 4.1.7-2), docbook-to-man, libpng-dev, libjpeg-dev, autotools-dev Standards-Version: 3.9.6 Homepage: http://www.bomberclone.de/ Vcs-Git: git://anonscm.debian.org/collab-maint/bomberclone.git diff -ru bomberclone-0.11.9.orig/debian/rules bomberclone-0.11.9/debian/rules --- bomberclone-0.11.9.orig/debian/rules +++ bomberclone-0.11.9/debian/rules @@ -1,7 +1,7 @@ #!/usr/bin/make -f %: - dh $@ + dh $@ --with autotools-dev override_dh_auto_configure: dh_auto_configure -- \