Package Details: plugdata-bin 0.9.1-1

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-git
Replaces: plugdata-git
Submitter: aik2
Maintainer: aik2
Last Packager: aik2
Votes: 4
Popularity: 0.43
First Submitted: 2022-10-03 10:47 (UTC)
Last Updated: 2024-08-12 15:33 (UTC)

Latest Comments

1 2 Next › Last »

catniptwinz commented on 2024-08-04 12:51 (UTC)

@aik2 Great, glad I could be helpful. Would you mind pushing the changes when you get a chance?

aik2 commented on 2024-07-31 06:18 (UTC)

@catniptwinz thank you! I have made the changes as you suggested.

catniptwinz commented on 2024-07-29 15:49 (UTC)

@aik2 Thanks for clarifying. Let me amend my earlier comment: it turns out that the issue is more subtle. The current HEAD builds fine with plain makepkg but fails when using aurutils to build in a clean chroot.

Adding both assets to the source array:

source=("$pkgname-$pkgver.tar.gz::https://github.com/plugdata-team/plugdata/releases/download/v${pkgver}/plugdata-Arch-x64.tar.gz"
        "${_name}.desktop"
        "${_name}.png")
sha512sums=('SKIP'
            '1a64e0abbc5e2e9417bf3e2d7f0186b8137a92cebf2123adff550dba53468588c46200f5f40056fad745d583282e1bdd903da14dc064846f91309dc570bc25e3'
            '6ed1228803ea10d51e793f6c8f008b87465314a1f6484121745e42f84fe7b443a8319fcdba862b17af2a1a8b04b7275c0d69eb7a07d0841676f671d25e0790b4')

and changing the paths in package():

install -Dm644 "${_name}.desktop" "${pkgdir}/usr/share/applications/${_name}.desktop"
install -Dm644 "${_name}.png" "${pkgdir}/usr/share/pixmaps/${_name}.png"

Fixes the build issues on my end (tested with a clean checkout, works with both makepkg and aur build with a clean chroot).

aik2 commented on 2024-07-29 14:46 (UTC)

Hi catniptwinz, the .desktop file is included in this AUR repo (instead of the upstream tarball). I tested the installation with paru and found no issues. Perhaps you need a clean install?

catniptwinz commented on 2024-07-29 13:18 (UTC)

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

aik2 commented on 2024-06-15 17:03 (UTC)

@tkna thank you. Now clap is available.

tkna commented on 2024-06-14 18:40 (UTC)

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/" \;

tkna commented on 2024-05-26 17:51 (UTC)

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.

rokidakota commented on 2023-05-09 20:17 (UTC)

0.7.1 is out :)

aik2 commented on 2023-01-31 12:22 (UTC)

Thanks paulj. The source link is corrected now.