From 932e3492d37db94d91b1956ff16ad46abd74d755 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=BCller?= Date: Tue, 5 Feb 2019 16:59:24 +0100 Subject: [PATCH] qm-dsp: Fix multilib install MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Andreas Müller --- recipes-musicians/qm-dsp/qm-dsp_1.7.1.bb | 34 ++++++++++++------------ 1 file changed, 17 insertions(+), 17 deletions(-) diff --git a/recipes-musicians/qm-dsp/qm-dsp_1.7.1.bb b/recipes-musicians/qm-dsp/qm-dsp_1.7.1.bb index 3ca0f92b..06c4abcf 100644 --- a/recipes-musicians/qm-dsp/qm-dsp_1.7.1.bb +++ b/recipes-musicians/qm-dsp/qm-dsp_1.7.1.bb @@ -20,21 +20,21 @@ do_compile_prepend() { do_install() { # stolen https://aur.archlinux.org/cgit/aur.git/plain/PKGBUILD?h=qm-dsp cd ${S} - install -Dm644 -t ${D}/usr/lib libqm-dsp.a - install -Dm644 -t ${D}/usr/include/qm-dsp/base base/*.h - install -Dm644 -t ${D}/usr/include/qm-dsp/dsp/chromagram dsp/chromagram/*.h - install -Dm644 -t ${D}/usr/include/qm-dsp/dsp/keydetection dsp/keydetection/*.h - install -Dm644 -t ${D}/usr/include/qm-dsp/dsp/mfcc dsp/mfcc/*.h - install -Dm644 -t ${D}/usr/include/qm-dsp/dsp/onsets dsp/onsets/*.h - install -Dm644 -t ${D}/usr/include/qm-dsp/dsp/phasevocoder dsp/phasevocoder/*.h - install -Dm644 -t ${D}/usr/include/qm-dsp/dsp/rateconversion dsp/rateconversion/*.h - install -Dm644 -t ${D}/usr/include/qm-dsp/dsp/rhythm dsp/rhythm/*.h - install -Dm644 -t ${D}/usr/include/qm-dsp/dsp/segmentation dsp/segmentation/*.h - install -Dm644 -t ${D}/usr/include/qm-dsp/dsp/signalconditioning dsp/signalconditioning/*.h - install -Dm644 -t ${D}/usr/include/qm-dsp/dsp/tempotracking dsp/tempotracking/*.h - install -Dm644 -t ${D}/usr/include/qm-dsp/dsp/tonal dsp/tonal/*.h - install -Dm644 -t ${D}/usr/include/qm-dsp/dsp/transforms dsp/transforms/*.h - install -Dm644 -t ${D}/usr/include/qm-dsp/dsp/wavelet dsp/wavelet/*.h - install -Dm644 -t ${D}/usr/include/qm-dsp/maths maths/*.h - install -Dm644 -t ${D}/usr/include/qm-dsp/thread thread/*.h + install -Dm644 -t ${D}${libdir} libqm-dsp.a + install -Dm644 -t ${D}${includedir}/qm-dsp/base base/*.h + install -Dm644 -t ${D}${includedir}/qm-dsp/dsp/chromagram dsp/chromagram/*.h + install -Dm644 -t ${D}${includedir}/qm-dsp/dsp/keydetection dsp/keydetection/*.h + install -Dm644 -t ${D}${includedir}/qm-dsp/dsp/mfcc dsp/mfcc/*.h + install -Dm644 -t ${D}${includedir}/qm-dsp/dsp/onsets dsp/onsets/*.h + install -Dm644 -t ${D}${includedir}/qm-dsp/dsp/phasevocoder dsp/phasevocoder/*.h + install -Dm644 -t ${D}${includedir}/qm-dsp/dsp/rateconversion dsp/rateconversion/*.h + install -Dm644 -t ${D}${includedir}/qm-dsp/dsp/rhythm dsp/rhythm/*.h + install -Dm644 -t ${D}${includedir}/qm-dsp/dsp/segmentation dsp/segmentation/*.h + install -Dm644 -t ${D}${includedir}/qm-dsp/dsp/signalconditioning dsp/signalconditioning/*.h + install -Dm644 -t ${D}${includedir}/qm-dsp/dsp/tempotracking dsp/tempotracking/*.h + install -Dm644 -t ${D}${includedir}/qm-dsp/dsp/tonal dsp/tonal/*.h + install -Dm644 -t ${D}${includedir}/qm-dsp/dsp/transforms dsp/transforms/*.h + install -Dm644 -t ${D}${includedir}/qm-dsp/dsp/wavelet dsp/wavelet/*.h + install -Dm644 -t ${D}${includedir}/qm-dsp/maths maths/*.h + install -Dm644 -t ${D}${includedir}/qm-dsp/thread thread/*.h }