Search Criteria
Package Details: easyrpg-player-git 0.6.2.r784.g7767965a-1
Git Clone URL: | https://aur.archlinux.org/easyrpg-player-git.git (read-only, click to copy) |
---|---|
Package Base: | easyrpg-player-git |
Description: | FLOSS RPG Maker 2000/2003 and EasyRPG games interpreter (development version) |
Upstream URL: | https://easyrpg.org |
Keywords: | 2k 2k3 role-playing-game |
Licenses: | |
Conflicts: | |
Provides: | |
Submitter: | carstene1ns |
Maintainer: | carstene1ns |
Last Packager: | carstene1ns |
Votes: | 5 |
Popularity: | 0.000000 |
First Submitted: | 2013-07-01 20:02 |
Last Updated: | 2020-12-29 21:49 |
Dependencies (17)
- fmt (fmt-git)
- freetype2 (freetype2-v35, freetype2-old-hinting, freetype2-infinality, freetype2-ttmetrics, freetype2-ultimate5, freetype2-git, freetype2-infinality-remix, freetype2-minimal-git)
- liblcf-git
- libsndfile (libsndfile-git, libsndfile-minimal-git)
- libvorbis (libvorbis-git, libvorbis-aotuv, libvorbis-aotuv-lancer)
- mpg123 (mpg321, mpg123-svn)
- pixman (pixman-git)
- sdl2_mixer (sdl2_mixer-hg, sdl2_mixer-minimal-git)
- speexdsp
- wildmidi
- asciidoc (asciidoc-git) (make)
- git (git-git) (make)
- fluidsynth (fluidsynth-git) (optional) – another MIDI decoder
- libxmp (libxmp-git, libxmp-aarch64-git) (optional) – decoder for tracker music, used by few games
- rpg2000-rtp (optional) – run time package for some 2k games
- rpg2003-rtp (optional) – run time package for some 2k3 games
- wine (wine-unity3d-git, wine-vulkan-git, wine-valve-git, wine-no-pe, wine-git, wine-valve, wine-stable-next, wine-stable, wine-staging-git, wine-stable-ubuntu, wine-staging) (optional) – for installing the run time packages (RTP)
Required by (6)
- easyrpg-rtp (requires easyrpg-player)
- rpg2000-rtp (requires easyrpg-player) (optional)
- rpg2003-rtp (requires easyrpg-player) (optional)
- yumenikki-en (requires easyrpg-player)
- yumenikki-jp (requires easyrpg-player)
- yumenikki-zh-cn (requires easyrpg-player)
Latest Comments
carstene1ns commented on 2021-01-06 20:28
unknown78: You need to rebuild
liblcf-git
. This constant was added 4 months ago.unknown78 commented on 2021-01-06 07:55
I get the following error when trying to build -> https://termbin.com/lin4
daroczig commented on 2020-12-28 13:26
fmt
seems to be also a requirement, otherwise, it fails with:escorares commented on 2020-12-26 12:18
Thank you. I got the sense I had to rebuild /something/, but didn't know what, so I just tried rebuilding easyrpg-player-git. I guess once I understood that the library missing was icu I should've checked which of the dependencies of easyrpg-player-git depended on it.
carstene1ns commented on 2020-12-25 21:33
escorares: just rebuild liblcf-git and it should be fine.
escorares commented on 2020-12-25 16:44
Well, I think that's the reason, it could be something else. Perhaps it can only be fixed upstream.
escorares commented on 2020-12-25 16:38
Fails at run time perhaps because of the new libicu (simply "icu" in the arch repos) update, which is now at version 68:
Fails at compilation too:
carstene1ns commented on 2014-01-08 18:47
FYI: the executable name changed to "easyrpg-player".
Updated to use SDL2 now, reworked dependencies.
carstene1ns commented on 2013-10-14 22:28
Okay, seems cmake building was broken due to a folder change 3 days ago. This is now fixed.
Using "pure" autotools may be more arch-like, however I don't think it is a bad thing using cmake for the build process at all.
ChrisOelmueller commented on 2013-10-14 20:47
Alternate PKGBUILD without cmake, instead using "easyrpg-readers" and autotools:
depends=('easyrpg-readers' ...
makedepends=('git' 'boost')
source=("$pkgname::git://github.com/EasyRPG/Player.git" ...
pkgver() {
cd "$srcdir/$pkgname"
git describe --tags --always | sed 's@-@.@g'
}
build() {
cd "$srcdir/$pkgname"
mkdir m4
./autogen.sh
./configure --prefix=/usr --with-readers=/usr CPPFLAGS=-DUNIX
make
}
package() {
cd "$srcdir/$pkgname"
make install DESTDIR="$pkgdir/"
}