Package Details: brutalchess 0.5.2-8

Git Clone URL: https://aur.archlinux.org/brutalchess.git (read-only, click to copy)
Package Base: brutalchess
Description: Chess game inspired by 'Battle Chess'. Features full 3D graphics.
Upstream URL: https://sourceforge.net/projects/brutalchess
Licenses: GPL-2.0-or-later
Submitter: None
Maintainer: DodoGTA
Last Packager: DodoGTA
Votes: 52
Popularity: 0.039196
First Submitted: 2006-08-02 16:06 (UTC)
Last Updated: 2024-06-27 16:20 (UTC)

Latest Comments

« First ‹ Previous 1 2

boenki commented on 2015-12-27 10:03 (UTC)

thanks pat_brat, included in -6.

pat_brat commented on 2015-12-25 16:09 (UTC)

I too had the same error. I changed the <freetype2/~g to <freetype2/freetype/~g, so my line now reads as: sed 's~#include\ <freetype/~#include\ <freetype2/freetype~g' -i fontloader.h Compiled fine now.

<deleted-account> commented on 2015-10-22 10:49 (UTC)

Hello! I get the following error if I run "makepkg -si" with the current PKGBUILD: In file included from brutalchess.cpp:26:0: fontloader.h:16:32: fatal error: freetype2/freetype.h: No such file or directory compilation terminated. Makefile:421: recipe for target 'brutalchess.o' failed make[2]: *** [brutalchess.o] Error 1 make[2]: Leaving directory '/ntfsE/Letoltes/brutalchess/src/brutalchess-0.5.2/src' Makefile:273: recipe for target 'all' failed make[1]: *** [all] Error 2 make[1]: Leaving directory '/ntfsE/Letoltes/brutalchess/src/brutalchess-0.5.2/src' Makefile:250: recipe for target 'all-recursive' failed make: *** [all-recursive] Error 1 ==> ERROR: A failure occurred in build(). Aborting... But if I remove the following line, suggested by @milko, everything works fine: sed 's~#include\ <freetype/~#include\ <freetype2/~g' -i fontloader.h

<deleted-account> commented on 2015-10-22 10:44 (UTC)

In file included from brutalchess.cpp:26:0: fontloader.h:16:32: fatal error: freetype2/freetype.h: No such file or directory compilation terminated. Makefile:421: recipe for target 'brutalchess.o' failed make[2]: *** [brutalchess.o] Error 1 make[2]: Leaving directory '/ntfsE/Letoltes/brutalchess/src/brutalchess-0.5.2/src' Makefile:273: recipe for target 'all' failed make[1]: *** [all] Error 2 make[1]: Leaving directory '/ntfsE/Letoltes/brutalchess/src/brutalchess-0.5.2/src' Makefile:250: recipe for target 'all-recursive' failed make: *** [all-recursive] Error 1 ==> ERROR: A failure occurred in build(). Aborting...

ArnaudNux commented on 2015-10-11 22:21 (UTC)

Makefile:250: recipe for target 'all-recursive' failed make: *** [all-recursive] Error 1 ==> ERROR: A failure occurred in build(). Aborting... ==> ERROR: Makepkg was unable to build brutalchess. ==> Restart building brutalchess ? [y/N]

boenki commented on 2014-04-24 20:42 (UTC)

@milko: thank you very much! It's updated.

milko commented on 2014-04-19 12:09 (UTC)

Hello there. I got the following error while building, in fontloader.h file: freetype/freetype.h no such file or directory So i added in PKGBUILD, in prepare(): sed 's~#include\ <freetype/~#include\ <freetype2/~g' -i fontloader.h

mmm commented on 2013-04-12 16:44 (UTC)

Guys, thanks for posting the solutions! Better yet, if you notified upstream, so this could be fixed out-of-the box. Thanks

agaskins commented on 2012-05-20 22:45 (UTC)

I also had to do what dubtheat mentioned below to get this to build.

dubtheat commented on 2012-04-21 11:00 (UTC)

I needed to include unistd.h in two of the files, so some users may find it handy to add these lines to the PKGBUILD file. sed 's/GLvoid/void/g' -i src/objview.cpp #--- BEGIN ADD LINES sed '/<string>/ a\#include <unistd.h>' -i src/xboardplayer.cpp sed '/<string>/ a\#include <unistd.h>' -i src/faileplayer.cpp #--- END ADD LINES # Build and install