Package Details: lib32-wildmidi 0.4.6-1

Git Clone URL: https://aur.archlinux.org/lib32-wildmidi.git (read-only, click to copy)
Package Base: lib32-wildmidi
Description: Simple software MIDI player which has a core softsynth library (32-bit)
Upstream URL: https://github.com/Mindwerks/wildmidi
Licenses: GPL-3.0-or-later AND LGPL-3.0-or-later
Submitter: orumin
Maintainer: rodrigo21
Last Packager: rodrigo21
Votes: 8
Popularity: 0.006422
First Submitted: 2016-06-06 07:00 (UTC)
Last Updated: 2025-08-02 20:40 (UTC)

Latest Comments

Alvaro commented on 2025-06-28 17:59 (UTC)

I got it to work by following the suggestion of the error message, appending -DCMAKE_POLICY_VERSION_MINIMUM=3.5 to the cmake command in the build stage.

diff --git a/PKGBUILD b/PKGBUILD
index 70d718a..265ab61 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -26,6 +26,7 @@ build() {
     export PKG_CONFIG_PATH=/usr/lib32/pkgconfig

     cmake -B build -S "$_basename-$_basename-$pkgver" \
+        -DCMAKE_POLICY_VERSION_MINIMUM=3.5 \
         -DCMAKE_BUILD_TYPE=None \
         -DCMAKE_INSTALL_PREFIX=/usr \
         -DCMAKE_INSTALL_LIBDIR=lib32

graem commented on 2025-05-11 22:26 (UTC)

upstream has changed to github, no longer builds

rodrigo21 commented on 2021-03-28 20:27 (UTC) (edited on 2021-03-28 21:43 (UTC) by rodrigo21)

@Tomato Fixed.

Tomato commented on 2021-03-28 20:15 (UTC)

for some reason the compiled files end up in x86_64-pc-linux-gnu subdirectory, so for the package to build, they need to be moved up by one level:

    mv lib32/x86_64-pc-linux-gnu/* lib32
    rmdir lib32/x86_64-pc-linux-gnu/

    #ln -s wildmidi.pc "$pkgdir/usr/lib32/pkgconfig/wildmidi.pc"

DDoSolitary commented on 2020-11-26 05:11 (UTC)

The pkgconfig file incorrectly points to /usr/lib, resulting in build failures of lib32-gst-plugins-bad.

We need to add -DLIB_SUFFIX=32 and remove mv lib lib32