Thank you, afontenot. I have update the PKGBUILD and added you as co-maintainer.
Search Criteria
Package Details: squishyball r78.27590fe-1
Package Actions
Git Clone URL: | https://aur.archlinux.org/squishyball.git (read-only, click to copy) |
---|---|
Package Base: | squishyball |
Description: | Perform ABX audio sample comparison testing on the command line |
Upstream URL: | https://gitlab.xiph.org/xiph/squishyball |
Keywords: | abx audio cli comparison test xiph |
Licenses: | GPL2 |
Submitter: | vesath |
Maintainer: | g360 (afontenot) |
Last Packager: | g360 |
Votes: | 6 |
Popularity: | 0.057806 |
First Submitted: | 2015-11-06 21:49 (UTC) |
Last Updated: | 2022-09-12 12:52 (UTC) |
Dependencies (5)
- flac (flac-gitAUR)
- libao (libao-gitAUR)
- libvorbis (libvorbis-aotuvAUR, libvorbis-aotuv-lancerAUR, libvorbis-gitAUR)
- ncurses (ncurses-gitAUR)
- opusfile (opusfile-gitAUR)
Required by (0)
Sources (2)
Latest Comments
g360 commented on 2022-09-12 12:54 (UTC)
afontenot commented on 2022-09-12 08:45 (UTC)
This needs to be updated. It no longer builds against ncurses 6.3, and also they seem to have moved the repository to the Xiph Gitlab.
I've fixed both issues in a PKGBUILD here: https://pastebin.com/raw/3B6stvQN
tsweet64 commented on 2021-08-03 20:16 (UTC)
@sammko I finally got it working on pipewire. By default it tries to output to the 0th ALSA device, which in my case was my (disconnected) "HDA NVIDIA". By using -d1
to squishyball, I got it to output to pipewire-alsa, which worked.
sammko commented on 2021-07-08 21:55 (UTC) (edited on 2021-07-08 21:55 (UTC) by sammko)
This does not seem to work for me, potentially because of pipewire, not sure. It says "Unable to open audio device for playback."
g360 commented on 2018-03-04 17:48 (UTC)
Thanks, appleby, this is now fixed.
appleby commented on 2017-11-15 20:15 (UTC)
This package currently fails to build for me. I believe this is the same upstream bug as reported on debian here:
https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=860334
I would have reported this upstream, but chrome complains of a revoked cert when I attempt to visit https://trac.xiph.org/.
Running "makepkg -scri", I get the following output:
mincurses.c: In function ‘minc_init_keytry’:
mincurses.c:123:26: error: dereferencing pointer to incomplete type ‘TERMINAL {aka struct term}’
TERMTYPE *tp=&(cur_term->type);
^~
make: *** [Makefile:414: mincurses.o] Error 1
make: *** Waiting for unfinished jobs....
==> ERROR: A failure occurred in build().
Aborting...
This patch fixes the build for me:
[ma@march src]? diff -ura squishyball squishyball.new
diff -ura squishyball/mincurses.c squishyball.new/mincurses.c
--- squishyball/mincurses.c 2017-11-15 14:10:09.743397561 -0600
+++ squishyball.new/mincurses.c 2017-11-15 14:10:43.533676391 -0600
@@ -29,6 +29,7 @@
#define _LARGEFILE_SOURCE
#define _LARGEFILE64_SOURCE
#define _FILE_OFFSET_BITS 64
+#define NCURSES_INTERNALS 1
#ifndef _REENTRANT
# define _REENTRANT
Pinned Comments
tsweet64 commented on 2021-08-03 20:16 (UTC)
@sammko I finally got it working on pipewire. By default it tries to output to the 0th ALSA device, which in my case was my (disconnected) "HDA NVIDIA". By using
-d1
to squishyball, I got it to output to pipewire-alsa, which worked.