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