Package Details: bomberclone 0.11.9-7

Git Clone URL: https://aur.archlinux.org/bomberclone.git (read-only, click to copy)
Package Base: bomberclone
Description: Clone of the game Atomic Bomberman
Upstream URL: https://www.bomberclone.de/core.html
Licenses: GPL
Submitter: arojas
Maintainer: RoestVrijStaal
Last Packager: arojas
Votes: 2
Popularity: 0.27
First Submitted: 2020-05-01 18:23 (UTC)
Last Updated: 2020-05-01 18:23 (UTC)

Latest Comments

MichaelHeat commented on 2026-03-23 14:25 (UTC) (edited on 2026-03-23 14:26 (UTC) by MichaelHeat)

On GCC 14/15 package currently fails due to conflicting types and legacy C code. To fix the build, update the build() function in the PKGBUILD:

build() {
  cd "$pkgname-$pkgver"

  local _legacy_flags="-std=gnu89 -fpermissive -Wno-error=implicit-function-declaration -Wno-error=incompatible-pointer-types -w"

  export CFLAGS="$CFLAGS $_legacy_flags"
  export CXXFLAGS="$CXXFLAGS $_legacy_flags"

  ./configure --prefix=/usr

  make CFLAGS="-O3 $(pkg-config --cflags --libs sdl) $CFLAGS -lm"
}