Package Details: cgames 2.2-7

Git Clone URL: https://aur.archlinux.org/cgames.git (read-only, click to copy)
Package Base: cgames
Description: Collection of three ncurses games. csokoban (sokoban), cmines (minesweeper) and cblocks (sliding-block puzzles).
Upstream URL: http://www.muppetlabs.com/~breadbox/software/cgames.html
Licenses: GPL2
Submitter: None
Maintainer: ivanp7
Last Packager: ivanp7
Votes: 17
Popularity: 0.000000
First Submitted: 2010-03-26 15:28 (UTC)
Last Updated: 2023-10-07 18:03 (UTC)

Latest Comments

1 2 Next › Last »

quite commented on 2024-07-05 12:25 (UTC)

This doesn't build for me currently. The following patch fixes it. At least it builds and the games can be started (and first level of csokoban played), so it seems good.

diff --git a/cblocks/cursesio.c b/cblocks/cursesio.c
index 16e3cd3..48abc86 100644
--- a/cblocks/cursesio.c
+++ b/cblocks/cursesio.c
@@ -380,7 +380,7 @@ static void selectrepresentation(void)
     attr_t     attr;

     if (has_colors()) {
-       int     pair;
+       short int       pair;
        short   frgnd, bkgnd;

        start_color();
diff --git a/cmines/cursesio.c b/cmines/cursesio.c
index 9bcc9e5..137898b 100644
--- a/cmines/cursesio.c
+++ b/cmines/cursesio.c
@@ -366,7 +366,7 @@ int ioinitialize(int updatetimerflag, int showsmileysflag, int silenceflag,
                 int allowoffclicksflag)
 {
     attr_t     attr;
-    int                n;
+    short int          n;

     updatetimer = updatetimerflag;
     showsmileys = showsmileysflag;

ivanp7 commented on 2023-10-07 18:04 (UTC)

Yes.

insanityOS commented on 2023-10-07 01:36 (UTC)

Package builds and works well in aarch64 architecture.

Can this be added this to the PKGBUILD?

wookietreiber commented on 2015-09-19 08:44 (UTC)

Done, thanks for notifying me.

<deleted-account> commented on 2015-09-18 17:10 (UTC)

A pkgrel bump would be handy to force everyone to rebuild this package linked to the new version of ncurses (otherwise the programs in this package will fail to load). Of course, in the meantime users can do this by just rebuilding the package on their systems.

Compintuit commented on 2011-07-16 23:15 (UTC)

Thank you, it works great now. It's wonderful that such ancient software is still actively packaged.

<deleted-account> commented on 2011-07-16 21:42 (UTC)

Done (I think) :) Enjoy.

Compintuit commented on 2011-07-16 20:57 (UTC)

I'm sorry to say the problem persists. The only change is that the error now reads /tmp/yaourt-tmp-caleb/aur-cgames/pkg/usr/csokoban: No such file or directory It has lost only one /share directory in the list.

<deleted-account> commented on 2011-07-16 20:29 (UTC)

Thank you very much for your input. I hope it is fixed now.

Compintuit commented on 2011-07-16 19:58 (UTC)

Here's the package instalation log, with yaourt: http://pastebin.com/3gZQtuqG And when I try to run cblocks: caleb ~ $ cblocks /tmp/yaourt-tmp-caleb/aur-cgames/pkg/usr/share/cblocks: No such file or directory cblocks: Couldn't find any data files in "/tmp/yaourt-tmp-caleb/aur-cgames/pkg/usr/share/cblocks". csokoban: caleb ~ $ csokoban /tmp/yaourt-tmp-caleb/aur-cgames/pkg/usr/share/csokoban: No such file or directory csokoban: Couldn't find any data files in "/tmp/yaourt-tmp-caleb/aur-cgames/pkg/usr/share/csokoban". cmines, however, runs perfectly. It has no data files, I guess.