Package Details: whisper.cpp-git 5a5c5dd-1

Git Clone URL: https://aur.archlinux.org/whisper.cpp-git.git (read-only, click to copy)
Package Base: whisper.cpp-git
Description: Port of OpenAI's Whisper model in C/C++
Upstream URL: https://github.com/ggerganov/whisper.cpp
Licenses: GPLv3
Conflicts: whisper.cpp
Submitter: hrehfeld
Maintainer: hrehfeld
Last Packager: hrehfeld
Votes: 0
Popularity: 0.000000
First Submitted: 2022-12-15 21:32 (UTC)
Last Updated: 2022-12-15 21:32 (UTC)

Dependencies (1)

Required by (0)

Sources (1)

Latest Comments

dreieck commented on 2024-03-27 09:34 (UTC)

Since several packages use ggml I made an extra package for it:
libggml-git.

This conflicts with packages that install their own ggml files.

Can you remove all ggml-specific files and if needed add libggml to the depends array?

Regards!

dreieck commented on 2024-03-26 10:52 (UTC)

llama.cpp and whisper.cpp need to conflict with each other:

error: failed to commit transaction (conflicting files)
llama.cpp-hipblas-git: /usr/include/ggml.h exists in filesystem (owned by whisper.cpp)

(Maybe better to split out /usr/include/ggml.h in a separate package and depend on it.)

Regards and thanks for maintaining!

hrehfeld commented on 2023-09-02 13:15 (UTC)

whoops, missed the flag, will update soon

xiota commented on 2023-06-02 07:52 (UTC) (edited on 2023-06-19 21:27 (UTC) by xiota)

Needs following updates (see whisper.cpp):

  • Use cmake to configure and build
  • Add to depends: gcc-libs, glibc, sdl2
  • Update provides
  • Fix license field, should be GPL3 (not GPLv3)

xiota commented on 2023-05-05 01:18 (UTC) (edited on 2023-05-05 01:18 (UTC) by xiota)

Please fix pkgver() to use:

git describe --long --tags | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g'

atticf commented on 2023-01-17 06:20 (UTC)

The current pkgver function doesn't order correctly (commit hash will be random which can lead to the new build having a lower version, which can be annoying when upgrading because pacman will say the package will be downgraded or skip the upgrade). I think you should change to something from here https://wiki.archlinux.org/title/VCS_package_guidelines#Git