Package Details: supertux-git 1:0.6.3.r1019.g50743fbff-1

Git Clone URL: https://aur.archlinux.org/supertux-git.git (read-only, click to copy)
Package Base: supertux-git
Description: A classic 2D jump'n run sidescroller game in a style similar to the original SuperMario game
Upstream URL: http://supertux.lethargik.org/
Licenses: GPL
Conflicts: supertux
Provides: supertux
Submitter: chenxiaolong
Maintainer: FredBezies
Last Packager: FredBezies
Votes: 14
Popularity: 0.000000
First Submitted: 2012-02-16 21:18 (UTC)
Last Updated: 2024-01-07 11:13 (UTC)

Latest Comments

1 2 3 4 5 Next › Last »

FredBezies commented on 2021-02-04 12:39 (UTC)

@workonfire: done in supertux-git 1:v0.6.2.r617.g99fa836b3-2

workonfire commented on 2021-02-04 12:13 (UTC)

'physfs' should be in depends, not makedepends. This library is required for the game to start.

tuckerboniface commented on 2019-01-11 02:22 (UTC)

I apologise for the long wait, freetype2 has been added as a dependency.

colinkeenan commented on 2019-01-11 01:56 (UTC)

@FredBezies, @tuckerboniface, @chenxiaolong

One of you, please add the missing makedepends, 'freetype2'

(I'm not sure, but maybe it should be in depends instead of makedepends)

colinkeenan commented on 2018-12-23 03:34 (UTC)

@tuckerboniface or @FredBezies or whoever is maintaining this. There is a missing dependency (or make dependency):

freetype2

@erock - thanks. Adding 'freetype2' to the dependency list works, so it should be in the PKGBUILD here in the AUR.

erock commented on 2018-11-25 16:50 (UTC)

@colinkeenan The latest version of supertux doesn't seem to require the hack anymore -- it works for me without any changes. If it isn't working in a clean chroot, perhaps adding 'freetype2' to the list of dependencies is necessary?

colinkeenan commented on 2018-11-21 22:23 (UTC) (edited on 2018-11-21 23:14 (UTC) by colinkeenan)

That trick doesn't work for me (or anymore - I don't know because I didn't try it in October).

It doesn't work because CMakeLists.txt no long contains the string 'freetype' or 'FREETYPE_DIR'. That line that KokPok changed no longer exists. The only line containing anything about freetype is this:

    target_link_libraries(supertux2_lib PUBLIC ${FREETYPE_LIBRARIES})

Any solutions?

However, the older trick of putting an executable freetype-config in /usr/bin works. It's just that I can't do it in a clean chroot and I don't see anyway to fix the PKGBUILD since setting an alias didn't work.

erock commented on 2018-10-23 15:38 (UTC)

Adding the lines in cogwerkz's solution works for me as well.

cogwerkz commented on 2018-10-04 10:10 (UTC) (edited on 2018-10-04 10:14 (UTC) by cogwerkz)

Following up on KokPok's solution, I added the following 3 lines to the prepare() function in the PKGBUILD, and it now (for me at least) compiles, installs and runs fine! :)

  line_old='--with-freetype-prefix=${FREETYPE_DIR}'
  line_new='--with-freetype-prefix=/usr'
  sed -i "s%$line_old%$line_new%g" ./CMakeLists.txt

KokPok commented on 2018-10-01 13:44 (UTC)

Found another solution: inside supertux directory CMakeLists.txt line 409 change "--with-freetype-prefix=${FREETYPE_DIR}" parameter to "--with-freetype-prefix=/usr". Now, please, check if it works for you and make appropriate patch for CMakeLists.txt I am not smart enough for that :)