1 |
|
2 |
%define rel 1 |
3 |
%define oname openAV-ArtyFX-release |
4 |
|
5 |
#NB the real source URL is https://github.com/openAVproductions/openAV-ArtyFX/archive/refs/tags/release-1.3.1.tar.gz |
6 |
|
7 |
Name: artyfx |
8 |
Version: 1.3.1 |
9 |
Release: %mkrel %{rel} |
10 |
Summary: A LV2 plugin bundle of artistic audio effects |
11 |
Group: Sound/Midi |
12 |
License: GPLv2 |
13 |
URL: http://openavproductions.com/artyfx/ |
14 |
Source0: %{oname}-%{version}.tar.gz |
15 |
|
16 |
BuildRequires: cmake |
17 |
BuildRequires: meson |
18 |
BuildRequires: pkgconfig(lv2) |
19 |
BuildRequires: pkgconfig(fftw3) |
20 |
BuildRequires: pkgconfig(sndfile) |
21 |
BuildRequires: pkgconfig(cairo) |
22 |
BuildRequires: pkgconfig(samplerate) |
23 |
|
24 |
BuildRequires: suil-devel |
25 |
|
26 |
Requires: lv2 |
27 |
Requires: suil-x11-in-gtk2 |
28 |
|
29 |
%description |
30 |
ArtyFX is a plugin bundle of artistic real-time audio effects. |
31 |
The aim of this plugin collection is to allow the designing of |
32 |
your sound just as you desired using a fast, efficient workflow. |
33 |
From bitcrushers, delays, distortions, equalizers, compressors, |
34 |
reverbs and more, there is a range of sounds available from ArtyFX |
35 |
|
36 |
%prep |
37 |
%autosetup -n %{oname}-%{version} |
38 |
|
39 |
%build |
40 |
%meson |
41 |
%meson_build |
42 |
|
43 |
%install |
44 |
%meson_install |
45 |
|
46 |
|
47 |
%ifarch x86_64 aarch64 |
48 |
mkdir -p %{buildroot}%{_libdir}/lv2 |
49 |
mv %{buildroot}/usr/lib/lv2/* %{buildroot}%{_libdir}/lv2/ |
50 |
%endif |
51 |
|
52 |
%files |
53 |
%doc README.md LICENSE |
54 |
%{_libdir}/lv2/ |