Package Details: anura-git r3950.16df0ba55-1

Git Clone URL: https://aur.archlinux.org/anura-git.git (read-only, click to copy)
Package Base: anura-git
Description: A fully-featured game engine, the tech behind the spectacular Frogatto & Friends.
Upstream URL: https://github.com/anura-engine/anura
Licenses: GPL
Conflicts: anura
Provides: anura
Submitter: hagabaka
Maintainer: Mr.Smith1974
Last Packager: Mr.Smith1974
Votes: 2
Popularity: 0.037773
First Submitted: 2013-05-27 20:19 (UTC)
Last Updated: 2023-10-20 10:02 (UTC)

Latest Comments

1 2 Next › Last »

MarsSeed commented on 2023-06-19 17:16 (UTC)

Also please add the following necessary fields to PKGBUILD:

provides=("anura=$pkgver")
conflicts=('anura')

MarsSeed commented on 2023-06-19 17:13 (UTC)

As there exist now a git tag, some improvements are needed in pkgver() function.

Please use git describe --long --tags, and use sed to remove the initial v from the generated tag.

GeBo commented on 2022-05-28 21:39 (UTC)

cc1plus: error: to generate dependencies you must specify either ‘-M’ or ‘-MM’

Blazin commented on 2022-04-17 07:30 (UTC) (edited on 2022-04-17 07:33 (UTC) by Blazin)

If you are trying to install this for frogatto-git, there are issues that currently prevent it from working. See the link in my comment on frogatto-git if you want to know how to manually compile it yourself.

Anura currently does not compile, due to the issue mentioned in the comment below. If you manually download the source for this AUR package, you can change the PKGBUILD to use a working version of Anura from Feb 26.

Change git+https://github.com/anura-engine/anura.git#branch=trunk to git+https://github.com/anura-engine/anura.git#commit=627d08fb5254b5c66d315f1706089905c2704059. That should get it to compile.

Again, this will not work for frogatto-git. Just keep that in mind.

pix3l commented on 2022-03-10 09:16 (UTC)

Building: src/sound.cpp src/sound.cpp: In member function ‘virtual void sound::{anonymous}::BinauralDelaySoundEffectFilter::MixData(float, int)’: src/sound.cpp:1232:40: error: expected primary-expression before ‘int’ 1232 | const int nsamples_delay = int(std::abs<float>(delay_)SampleRate);

https://github.com/anura-engine/anura/issues/321

Houkime commented on 2018-10-17 22:23 (UTC) (edited on 2018-10-17 22:26 (UTC) by Houkime)

Building: src/preferences.cpp
src/preferences.cpp:31:10: fatal error: boost/uuid/sha1.hpp: No such file or directory
#include boost/uuid/sha1.hpp
^~~~~~~~~~~~~~~~~~~~~
compilation terminated.
make: *** [Makefile:236: build/preferences.o] Error 1
==> ERROR: A failure occurred in build().
Aborting...

To fix that you need to change address in #include boost/uuid/sha1.hpp to boost/uuid/detail/sha1.hpp in all relevant cpp files.
Easiest way to do it is to append

sed -i 's=uuid/sha1.hpp=uuid/detail/sha1.hpp=g' src/*.cpp

to the prepare section of the PKGBUILD
(sed is a part of the Arch core, so no extra deps here)
I opened the issue on the upstream here
https://github.com/anura-engine/anura/issues/283

macxcool commented on 2017-02-18 13:17 (UTC)

An anura-git contributor suggests using: git submodule update --init --recursive I get: Permission denied (publickey)

macxcool commented on 2017-02-17 14:22 (UTC) (edited on 2017-02-17 18:26 (UTC) by macxcool)

src/kre/imgui_impl_sdl_gl3.cpp:13:19: fatal error: imgui.h: No such file or directory #include "imgui.h" It's like when the 'trunk' branch is downloaded, the imgui folder doesn't come down. If I get it manually everything compiles properly. At least it has so far. I'm still waiting. If you look on github the imgui folder looks different than the others. Maybe you need to get it separately?