Package Details: brogue 1.7.5-1

Git Clone URL: https://aur.archlinux.org/brogue.git (read-only, click to copy)
Package Base: brogue
Description: A 26-level dungeon crawl to the Amulet of Yendor.
Upstream URL: http://sites.google.com/site/broguegame/
Licenses: AGPL3
Submitter: None
Maintainer: keenerd
Last Packager: keenerd
Votes: 55
Popularity: 0.002141
First Submitted: 2010-10-14 09:15 (UTC)
Last Updated: 2018-11-19 00:52 (UTC)

Dependencies (1)

  • libtcod-151

Required by (0)

Sources (2)

Latest Comments

« First ‹ Previous 1 2 3 4 5 6 7 Next › Last »

magikmw commented on 2013-02-04 07:05 (UTC)

Please change the brogue.sh startup script line two: ./brogue to ./brogue "$@" This way all commandline arguments that Brogue offers originally (-s for seed start, -t for terminal mode, etc) should work fine with the aur package.

<deleted-account> commented on 2013-01-31 20:42 (UTC)

Updated. Thanks for the help.

<deleted-account> commented on 2013-01-31 09:34 (UTC)

Works with this diff: 4c4 < pkgver=1.7 --- > pkgver=1.7.1 9c9 < license=('GPL3') --- > license=('AGPL3') 12c12 < source=(http://sites.google.com/site/broguegame/$pkgname-linux-$pkgver.tar.gz --- > source=(http://sites.google.com/site/broguegame/$pkgname-$pkgver-linux.tar.gz 14c14 < md5sums=('35d704fa9bd290fca91980095ffb1681' --- > md5sums=('4398db785c2c676bef45232cfee13f8b'

<deleted-account> commented on 2012-10-21 14:47 (UTC)

Updated to 1.7. Please notice that you have to be on the group games to run the game properly (or change the permissions to /usr/share/brogue). Joao

<deleted-account> commented on 2012-10-16 23:28 (UTC)

That stopped the game from crashing at startup but it is still crashing for me when starting a new game.

tycho commented on 2012-10-03 10:38 (UTC)

The segfault can be fixed by this patch: --- src/platform/tcod-platform.c 2012-10-03 03:32:54.459043698 -0700 +++ src/platform/tcod-platform.c 2012-10-03 03:32:37.005711422 -0700 @@ -26,6 +26,8 @@ int fontWidths[13] = {112, 128, 144, 160, 176, 192, 208, 224, 240, 256, 272, 288, 304}; // widths of the font graphics (divide by 16 to get individual character width) int fontHeights[13] = {176, 208, 240, 272, 304, 336, 368, 400, 432, 464, 496, 528, 528}; // heights of the font graphics (divide by 16 to get individual character height) + SDL_Init(SDL_INIT_VIDEO); + const SDL_VideoInfo* vInfo = SDL_GetVideoInfo(); int screenWidth = vInfo->current_w; int screenHeight = vInfo->current_h;

<deleted-account> commented on 2012-09-24 20:51 (UTC)

libtcod will segfault with brogue. libtcod-beta will not compile with md5sum error: "?file_=26 ... FAILED" Brogue won't install correctly until one of these is corrected. However, it's still possible to compile it with only curses support. http://pastebin.com/raw.php?i=e2th3sBv

<deleted-account> commented on 2012-07-29 23:46 (UTC)

Updated with patch to fix the issues with the mouse. Thank you very much to Richard Tew for providing the fixed file.

<deleted-account> commented on 2012-06-30 10:28 (UTC)

It's not about the precompiled brogue. It's about the precompiled libtcod library. When I compile brogue against it it works. Unfortunately I have not found how to solve this yet.