Upstream's release tarball doesn't include the .desktop file, causing makepkg to fail:
install: cannot stat '/build/plugdata-bin/src/../plugdata.desktop': No such file or directory
| Git Clone URL: | https://aur.archlinux.org/plugdata-bin.git (read-only, click to copy) |
|---|---|
| Package Base: | plugdata-bin |
| Description: | Plugin wrapper around Pure Data with a new JUCE GUI, allowing patching in DAWs |
| Upstream URL: | https://github.com/plugdata-team/plugdata |
| Licenses: | GPL3 |
| Groups: | lv2-plugins, pro-audio, vst3-plugins, clap-plugins |
| Conflicts: | plugdata |
| Provides: | plugdata |
| Submitter: | aik2 |
| Maintainer: | aik2 |
| Last Packager: | aik2 |
| Votes: | 8 |
| Popularity: | 0.42 |
| First Submitted: | 2022-10-03 10:47 (UTC) |
| Last Updated: | 2026-04-27 19:35 (UTC) |
« First ‹ Previous 1 2 3
Upstream's release tarball doesn't include the .desktop file, causing makepkg to fail:
install: cannot stat '/build/plugdata-bin/src/../plugdata.desktop': No such file or directory
@tkna thank you. Now clap is available.
Understood. *.clap is a file, not a directory. https://paste.rs/sEXoN Please make the following changes.
- find . -name '*.clap' -type d -exec cp -ar {} "${pkgdir}/usr/lib/clap/" \;
+ find . -name '*.clap' -type f -exec cp -ar {} "${pkgdir}/usr/lib/clap/" \;
I would also like a CLAP version of the plugdata to work around bugs specific to the plugin type, etc. Sorry if this is a difficult task, but please consider it.
0.7.1 is out :)
Thanks paulj. The source link is corrected now.
Source format has changed. The following changes worked:
...
source=("https://github.com/timothyschoen/PlugData/releases/download/v${pkgver}/PlugData-Arch-x64.tar.gz")
...
package () {
...
find ./plugdata/LV2 -name ...
find ./plugdata/VST3 -name ...
install -Dm755 -T ./plugdata/Standalone/* ...
}
Pinned Comments
aik2 commented on 2026-03-05 23:15 (UTC)
Now aarch64 is also supported.