1 |
semiletov |
1200238 |
%define commit f13889496145c33abb76fa16b02edd0a1299299d |
2 |
|
|
|
3 |
|
|
Name: artyfx |
4 |
|
|
Version: git20171104 |
5 |
semiletov |
1200245 |
Release: %mkrel 2 |
6 |
semiletov |
1200238 |
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 |
semiletov |
1200240 |
BuildRequires: pkgconfig(sndfile) |
18 |
semiletov |
1200238 |
BuildRequires: suil-devel |
19 |
|
|
|
20 |
|
|
Requires: lv2 |
21 |
|
|
Requires: suil-gtk2-in-qt4 |
22 |
|
|
Requires: suil-qt4-in-gtk2 |
23 |
|
|
Requires: suil-x11-in-qt4 |
24 |
|
|
Requires: suil-x11-in-gtk2 |
25 |
|
|
|
26 |
|
|
%description |
27 |
|
|
ArtyFX is a plugin bundle of artistic real-time audio effects. |
28 |
|
|
The aim of this plugin collection is to allow the designing of |
29 |
|
|
your sound just as you desired using a fast, efficient workflow. |
30 |
|
|
From bitcrushers, delays, distortions, equalizers, compressors, |
31 |
|
|
reverbs and more, there is a range of sounds available from ArtyFX |
32 |
|
|
|
33 |
|
|
%prep |
34 |
semiletov |
1200245 |
%setup -q -n openAV-ArtyFX-%{commit} |
35 |
semiletov |
1200238 |
|
36 |
|
|
%build |
37 |
semiletov |
1200250 |
%ifarch armv7hl |
38 |
|
|
%cmake -DBUILD_SSE=OFF |
39 |
|
|
%else |
40 |
semiletov |
1200238 |
%cmake |
41 |
semiletov |
1200250 |
%endif |
42 |
semiletov |
1200238 |
%make_build |
43 |
|
|
|
44 |
|
|
%install |
45 |
|
|
%make_install -C build |
46 |
|
|
|
47 |
|
|
%ifarch x86_64 |
48 |
|
|
mkdir -p %{buildroot}%{_libdir}/lv2 |
49 |
|
|
mv -f %{buildroot}/usr/lib/lv2/* %{buildroot}/%{_libdir}/lv2 |
50 |
|
|
%endif |
51 |
|
|
|
52 |
|
|
%files |
53 |
|
|
%{_libdir}/lv2/* |
54 |
|
|
%doc README.md LICENSE |
55 |
|
|
|