Package Details: easyrpg-player-git 0.8.r792.ged2449708-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: GPL-3.0-or-later
Conflicts: easyrpg-player
Provides: easyrpg-player
Submitter: carstene1ns
Maintainer: carstene1ns
Last Packager: carstene1ns
Votes: 8
Popularity: 0.36
First Submitted: 2013-07-01 20:02 (UTC)
Last Updated: 2025-03-06 22:03 (UTC)

Dependencies (26)

Required by (8)

Sources (1)

Latest Comments

« First ‹ Previous 1 2 3

carstene1ns commented on 2013-10-14 22:28 (UTC)

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 (UTC)

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/" }