Package Details: fife 0.4.2-5

Git Clone URL: https://aur.archlinux.org/fife.git (read-only, click to copy)
Package Base: fife
Description: Flexible Isometric Free Engine is a cross platform game creation framework
Upstream URL: http://fifengine.net/
Licenses: LGPL
Submitter: ChrisOelmueller
Maintainer: Lucki
Last Packager: Lucki
Votes: 11
Popularity: 0.000000
First Submitted: 2015-08-14 07:52 (UTC)
Last Updated: 2022-04-01 10:17 (UTC)

Latest Comments

1 2 3 Next › Last »

lightdot commented on 2022-04-01 02:54 (UTC)

Can't build ATM, due to this error (fixed, but ureleased): https://github.com/fifengine/fifengine/issues/1080

Perhaps a patch could be carried until the upstream makes a release again?

Lucki commented on 2021-04-05 13:53 (UTC)

I don't get such error in a clean build environment. The repository doesn't even have a configure script in it.

Please try with a clean directory (makepkg -Cc…). Also try to change the build folder "$_githubname-$pkgver/build" in line 38, 47 and 51 to something like "$_githubname-$pkgver/aur-build" and try building again. That's a change I haven't pushed yet.

simona commented on 2021-04-05 09:30 (UTC)

./configure: line 26302: syntax error near unexpected token newline'<br> ./configure: line 26302: '''
==> ERRORE: Si è verificato un errore in build().

LuckyTurtleDev commented on 2021-02-08 20:26 (UTC)

Because the getchildren function is deprecated this package must been patched to work with Pytton3.9.

You can do this by adding the following sed commands to the prepare funktion of the PKGBUILB file or using this commit as patch.

sed -i 's/moduleTree\.getchildren():/moduleTree:/g'                   "./engine/python/fife/extensions/serializers/simplexml.py"

sed -i 's/self\._root_element\.getchildren():/self\._root_element:/g' "./engine/python/fife/extensions/serializers/simplexml.py"

sed -i 's/c\.getchildren():/c:/g'                                     "./engine/python/fife/extensions/serializers/simplexml.py"

Otherwise you get this error AttributeError: 'xml.etree.ElementTree.Element' object has no attribute 'getchildren' if you execute unknown-horizons.

MartinX3 commented on 2020-08-15 17:43 (UTC)

I can confirm it The package should add libstdc++5 as an dependency or it won't be buildable.

AlphaJack commented on 2020-07-07 14:14 (UTC)

At first I got

[...]
==> Making package: fife 0.4.2-2 (Tue Jul  7 16:09:06 2020)
==> Checking runtime dependencies...
==> Missing dependencies:
  -> libstdc++5
==> Checking buildtime dependencies...
==> ERROR: Could not resolve all dependencies.
[...]

After installing libstdc++5 I got:

[...]
- Configuring done
CMake Error in CMakeLists.txt:
  Imported target "Boost::system" includes non-existent path
    "/include"
  in its INTERFACE_INCLUDE_DIRECTORIES.  Possible reasons include:
  * The path was deleted, renamed, or moved to another location.
  * An install or uninstall procedure did not complete successfully.
  * The installation package was faulty and references files it does not
  provide.

CMake Error in CMakeLists.txt:
  Imported target "Boost::system" includes non-existent path
    "/include"
  in its INTERFACE_INCLUDE_DIRECTORIES.  Possible reasons include:
  * The path was deleted, renamed, or moved to another location.
  * An install or uninstall procedure did not complete successfully.
  * The installation package was faulty and references files it does not
  provide.

-- Generating done
CMake Generate step failed.  Build files cannot be regenerated correctly.
==> ERROR: A failure occurred in build().
    Aborting...
[...]

<deleted-account> commented on 2019-05-11 09:24 (UTC)

The compilation fail due to deprecated/unsupported swig flags

Modify the PKGBUILD file please to include this sed or create a patch

build() {
  cd "$_githubname-$pkgver"
  [[ -d "build" ]] && rm -r "build"
  mkdir -p "build" && cd "build"
  cmake \
    -DCMAKE_INSTALL_PREFIX:PATH=/usr \
    ..
  sed -r -i 's/(-noproxydel|-fastinit|-fastunpack|-fastquery|-modernargs|-nobuildnone|-modern|-nosafecstrings)\b//g' CMakeFiles/fife*_swig_compilation.dir/build.make
  make
  # If compilation seems to stall at 99% for ages, do not abort!
  # While not perfectly convenient, that is to be expected from
  # SWIG. Eventually, you'll reach the holy triple-digit land.
}

Lucki commented on 2019-01-18 14:13 (UTC) (edited on 2019-01-18 14:14 (UTC) by Lucki)

An updated PKGBUILD can be found here.

I would happily adopt or co-maintain this package.

stubb commented on 2018-12-08 11:33 (UTC)

have the same problems like pmav99. fife-git works fine. Maybe a problem with glee which was replaced by glew in fife-git.

pmav99 commented on 2018-11-28 21:12 (UTC) (edited on 2018-11-28 21:13 (UTC) by pmav99)

Compilation error: https://gist.github.com/pmav99/79b615fc5b6fd157161004b3a7c00524