Package Details: tmxparser-git 189.d314b31-1

Git Clone URL: https://aur.archlinux.org/tmxparser-git.git (read-only, click to copy)
Package Base: tmxparser-git
Description: Library for parsing TMX files (Tiled Maps) using TinyXML's DOM interface.
Upstream URL: https://github.com/sainteos/tmxparser
Licenses: BSD
Conflicts: tmx-parser-svn
Submitter: c6p
Maintainer: c6p
Last Packager: c6p
Votes: 1
Popularity: 0.000000
First Submitted: 2015-07-19 10:56 (UTC)
Last Updated: 2024-01-11 18:49 (UTC)

Latest Comments

c6p commented on 2018-12-04 17:34 (UTC)

@Skillet, it should be fixed now.

GymliDanny commented on 2018-12-04 05:36 (UTC)

the package fails to install with this error

error: failed to commit transaction (conflicting files) tmxparser-git: /usr/lib64 exists in filesystem (owned by filesystem)

c6p commented on 2015-08-14 10:38 (UTC)

Updated. Thank you for the patch Jerome.

jeromerose commented on 2015-08-14 02:15 (UTC)

Small patch to move the installation path out of /usr/local ala arch packaging standards. Thanks -Jerome diff --git a/PKGBUILD b/PKGBUILD index 05b1113..6e87743 100755 --- a/PKGBUILD +++ b/PKGBUILD @@ -23,7 +23,7 @@ build() { cd $pkgname mkdir build cd build - cmake .. + cmake -DCMAKE_INSTALL_PREFIX=/usr .. make }