Search Criteria
Package Details: mod-host-git 0.10.6.r502.g44aece1-2
Package Actions
| Git Clone URL: | https://aur.archlinux.org/mod-host-git.git (read-only, click to copy) |
|---|---|
| Package Base: | mod-host-git |
| Description: | LV2 host for Jack controllable via socket or command line |
| Upstream URL: | https://github.com/moddevices/mod-host |
| Licenses: | GPL3 |
| Conflicts: | mod-host |
| Provides: | mod-host |
| Submitter: | jujudusud |
| Maintainer: | jujudusud |
| Last Packager: | jujudusud |
| Votes: | 0 |
| Popularity: | 0.000000 |
| First Submitted: | 2021-10-25 17:24 (UTC) |
| Last Updated: | 2021-10-25 17:24 (UTC) |
Latest Comments
AlmaMater commented on 2026-03-17 20:39 (UTC)
I was getting an error when trying to compile.
Currently jack_max_cpu_load() does not exist in JACK2.
You need to add to the PKGBUILD, between pkgver() and build():
prepare() { cd "${pkgname%-git}" # jack_max_cpu_load() does not exist in JACK2 on Arch Linux. # Only patch the call site inside the snprintf block, not the wrapper # function name effects_jack_max_cpu_load which must stay distinct. sed -i 's/\bjack_max_cpu_load\b/jack_cpu_load/g' src/effects.c }