Package Details: spek 0.8.5-1

Git Clone URL: https://aur.archlinux.org/spek.git (read-only, click to copy)
Package Base: spek
Description: An acoustic spectrum analyser
Upstream URL: http://spek.cc/
Licenses: GPL3
Submitter: sushidude
Maintainer: petronny (AutoUpdateBot)
Last Packager: petronny
Votes: 53
Popularity: 0.75
First Submitted: 2015-08-12 05:45 (UTC)
Last Updated: 2023-01-10 10:02 (UTC)

Latest Comments

1 2 3 Next › Last »

rgambord commented on 2025-01-13 21:12 (UTC) (edited on 2025-01-13 21:24 (UTC) by rgambord)

fix for @d2a2's issue,

edit the PKGBUILD to re-gettextize the package,

build() {
    cd "$srcdir/$pkgname"
    expect -c 'spawn gettextize --force; send "\r"; expect eof'
    autoreconf -ivf
    ./autogen.sh --prefix=/usr
    make
}

Note, the gettextize script explicitly polls for user input via /dev/tty. I used `expect' to handle that non-interactively.

d2a2 commented on 2025-01-07 07:53 (UTC) (edited on 2025-01-07 07:57 (UTC) by d2a2)

Building both this package and spek-git in a chroot fails with the same error:

make[1]: Entering directory '/build/spek/src/spek-0.8.5'
...
make[2]: Leaving directory '/build/spek/src/spek-0.8.5/man'
Making all in po
make[2]: Entering directory '/build/spek/src/spek-0.8.5/po'
*** error: gettext infrastructure mismatch: using a Makefile.in.in from gettext version 0.20 but the autoconf macros are from gettext version 0.22
make[2]: *** [Makefile:243: stamp-po] Error 1
make[2]: Leaving directory '/build/spek/src/spek-0.8.5/po'
make[1]: *** [Makefile:481: all-recursive] Error 1
make[1]: Leaving directory '/build/spek/src/spek-0.8.5'
make: *** [Makefile:407: all] Error 2
==> ERROR: A failure occurred in build().
    Aborting...

I checked out the install guide on the upstream repo and building from the git repo fails too, but not building from the tarball. The last commit was two years ago so maybe it's a problem with upstream?

ToadKing commented on 2024-06-06 22:31 (UTC)

Any package that's a part of base-devel should be omitted from make dependencies since it's assumed you have it installed when building anything from AUR. (Or pacman packages in general.)

https://wiki.archlinux.org/title/PKGBUILD#makedepends

rien333 commented on 2024-06-06 16:56 (UTC)

Everyone getting errors regarding autoconf/automake: these are very fundamental packages for building *nix software. They are also part of base-devel, a package you should probably have around if you are using the AUR.

In other words: this package is not out of date. At best, it needs to have more dependencies in the makedepends array.

mosgerila commented on 2023-06-14 10:11 (UTC)

To resolve the error it is necessary to install autoconf. $ sudo pacman -Syu autoconf

mosgerila commented on 2023-06-12 11:30 (UTC)

Hello! Nobody here??? ==> Starting build()... ./autogen.sh: line 9: autoreconf: command not found ==> ERROR: A failure occurred in build(). Aborting...

alex8897 commented on 2023-05-20 15:55 (UTC) (edited on 2023-05-20 15:55 (UTC) by alex8897)

==> Starting build()... /var/tmp/pamac-build-mrwolf/spek/PKGBUILD: line 15: pkg-config: command not found ./autogen.sh: line 9: autoreconf: command not found

==> ERROR: A failure occurred in build(). Aborting...

xiashali commented on 2023-01-10 09:19 (UTC)

Spek 0.8.5 - Released 2023-01-09

Upgrade to FFmpeg 5.1

guglovich commented on 2022-09-03 10:17 (UTC) (edited on 2022-09-03 10:18 (UTC) by guglovich)

Hi. Will there be a replacement package for its evolving fork?
https://github.com/MikeWang000000/spek-X

sekret commented on 2022-07-28 04:36 (UTC)

Well done, 0.8.4-2 builds fine.

One other thing though, which is however of low priority:

In /etc/makepkg.conf I have set SRCDEST to one specific directory. For all tarballs to be saved in the same location it's important they have different file names. Right now the downloaded tarball is named v0.8.4.tar.gz, which is not very distinctive. Btw, namcap also complains about this.

So I'd vote for changing the source line in the PKGBUILD to source=("spek-${pkgver}.tar.gz::https://github.com/alexkay/spek/archive/v${pkgver}.tar.gz")