Package Details: vgmstream-git r1980.157.gc5f154d7-1

Git Clone URL: https://aur.archlinux.org/vgmstream-git.git (read-only, click to copy)
Package Base: vgmstream-git
Description: Library for playback of various streamed audio formats used in video games
Upstream URL: https://github.com/vgmstream/vgmstream
Licenses: ISC
Conflicts: vgmstream, vgmstream-kode54-git
Provides: vgmstream
Replaces: vgmstream-kode54-git
Submitter: Deewiant
Maintainer: Deewiant
Last Packager: Deewiant
Votes: 10
Popularity: 0.72
First Submitted: 2021-01-02 00:07 (UTC)
Last Updated: 2025-03-09 16:19 (UTC)

Latest Comments

« First ‹ Previous 1 2 3 4

TerusTheBird commented on 2018-11-21 21:50 (UTC) (edited on 2018-11-21 21:51 (UTC) by TerusTheBird)

This fails to build

==> Making package: vgmstream-kode54-git r1020.r1169.gc3d3aaee-2 (Wed 21 Nov 2018 04:44:36 PM EST)
==> Checking runtime dependencies...
==> Checking buildtime dependencies...
==> Retrieving sources...
  -> Cloning vgmstream-kode54-git git repo...
Cloning into bare repository '/home/user/AUR-shit/vgmstream-kode54-git/vgmstream-kode54-git'...
remote: Enumerating objects: 6, done.
remote: Counting objects: 100% (6/6), done.
remote: Compressing objects: 100% (6/6), done.
remote: Total 21860 (delta 1), reused 2 (delta 0), pack-reused 21854
Receiving objects: 100% (21860/21860), 20.19 MiB | 1.79 MiB/s, done.
Resolving deltas: 100% (18119/18119), done.
  -> Found install-headers.patch
  -> Found no-link-audacious.patch
==> Validating source files with sha256sums...
    vgmstream-kode54-git ... Skipped
    install-headers.patch ... Passed
    no-link-audacious.patch ... Passed
==> Extracting sources...
  -> Creating working copy of vgmstream-kode54-git git repo...
Cloning into 'vgmstream-kode54-git'...
done.
==> Starting prepare()...
patching file src/Makefile.autotools.am
patching file src/Makefile.autotools.am
Hunk #1 FAILED at 11.
1 out of 1 hunk FAILED -- saving rejects to file src/Makefile.autotools.am.rej
==> ERROR: A failure occurred in prepare().
    Aborting...

phiresky commented on 2018-07-25 22:11 (UTC) (edited on 2018-07-25 22:11 (UTC) by phiresky)

Getting an error compiling a while(true) loop. Fixed by doing:

diff --git a/src/meta/ea_eaac.c b/src/meta/ea_eaac.c
index d7ab6823..45673753 100644
--- a/src/meta/ea_eaac.c
+++ b/src/meta/ea_eaac.c
@@ -2,6 +2,8 @@
#include "../layout/layout.h"
#include "../coding/coding.h"
#include "ea_eaac_streamfile.h"
+#define true  1
+#define false 0

/* EAAudioCore formats, EA's current audio middleware */