# Status: active # Tag: Effect, Pitch # Type: Plugin, LV2 # Category: Effect %global debug_package %{nil} %global commit0 76fa750a16bf07a1ed6e551736a138bbabbe067c Name: dm-Whammy Version: 0.0.5 Release: 1%{?dist} Summary: A mono pitchshift effect written in Rust inspired by the DigiTech Whammy URL: https://github.com/davemollen/dm-Whammy ExclusiveArch: x86_64 aarch64 License: GPL-3.0-only Vendor: Audinux Distribution: Audinux Source0: https://github.com/davemollen/dm-Whammy/archive/%{commit0}.zip#/%{name}-%{version}.zip BuildRequires: gcc gcc-c++ BuildRequires: rustup BuildRequires: libglvnd-devel BuildRequires: libXcursor-devel BuildRequires: python3 BuildRequires: xcb-util-wm-devel %description A mono pitchshift effect written in Rust inspired by the DigiTech Whammy©. %package -n license-%{name} Summary: License and documentations for %{name} License: GPL-3.0-only %description -n license-%{name} License and documentations for %{name} %package -n vst3-%{name} Summary: VST3 version of %{name} License: GPL-3.0-only Requires: license-%{name} %description -n vst3-%{name} VST3 version of %{name} %package -n clap-%{name} Summary: CLAP version of %{name} License: GPL-3.0-only Requires: license-%{name} %description -n clap-%{name} CLAP version of %{name} %package -n lv2-%{name} Summary: LV2 version of %{name} License: GPL-3.0-only Requires: license-%{name} %description -n lv2-%{name} LV2 version of %{name} %prep %autosetup -n dm-Whammy-%{commit0} rm -f .cargo/config.toml %build export RUSTFLAGS="-g -O" export CWD=`pwd` export RUSTUP_HOME="$CWD/rustup" export CARGO_HOME="$CWD/cargo" # rustup-init --no-modify-path -y --default-toolchain=1.76.0-x86_64-unknown-linux-gnu # rustup-init --no-modify-path -y --default-toolchain=nightly-x86_64-unknown-linux-gnu # source cargo/env %ifarch x86_64 rustup-init --no-modify-path -y --default-toolchain 1.76.0-x86_64-unknown-linux-gnu %endif %ifarch aarch64 rustup-init --no-modify-path -y --default-toolchain 1.76.0-aarch64-unknown-linux-gnu %endif source cargo/env cd lv2 cargo build --release cp target/release/libdm_whammy.so dm-Whammy.lv2/ cd .. cd nih-plug cargo xtask bundle dm_whammy --release %install cd nih-plug/target/bundled install -m 755 -d %{buildroot}/%{_libdir}/clap/ cp -vfr dm_whammy.clap %{buildroot}/%{_libdir}/clap/ install -m 755 -d %{buildroot}/%{_libdir}/vst3/ cp -vfr dm_whammy.vst3 %{buildroot}/%{_libdir}/vst3/ cd ../../../lv2/ install -m 755 -d %{buildroot}/%{_libdir}/lv2/ cp -vfr dm-Whammy.lv2 %{buildroot}/%{_libdir}/lv2/ %files -n license-%{name} %doc README.md %license LICENSE %files -n vst3-%{name} %{_libdir}/vst3/* %files -n clap-%{name} %{_libdir}/clap/* %files -n lv2-%{name} %{_libdir}/lv2/* %changelog * Wed Oct 02 2024 Yann Collette - 0.0.5-1 - Initial spec file