]> git.pld-linux.org Git - packages/jalv.git/blob - jalv.spec
- updated to 1.6.0; added Qt5 interface
[packages/jalv.git] / jalv.spec
1 Summary:        Simple but fully featured LV2 host for JACK
2 Summary(pl.UTF-8):      Prosty, ale w pełni funkcjonalny host LV2 dla JACK-a
3 Name:           jalv
4 Version:        1.6.0
5 Release:        1
6 License:        ISC
7 Group:          Applications/Sound
8 Source0:        http://download.drobilla.net/%{name}-%{version}.tar.bz2
9 # Source0-md5:  8390c3313c6a27f06919120de2de9348
10 URL:            http://drobilla.net/software/jalv/
11 BuildRequires:  Qt5Gui-devel >= 5.1.0
12 BuildRequires:  QtGui-devel >= 4.0.0
13 BuildRequires:  gtk+2-devel >= 2:2.18.0
14 BuildRequires:  gtk+3-devel >= 3.0.0
15 BuildRequires:  gtkmm-devel >= 2.20.0
16 BuildRequires:  jack-audio-connection-kit-devel >= 0.120.0
17 BuildRequires:  libstdc++-devel >= 6:4.3
18 BuildRequires:  lilv-devel >= 0.24.0
19 BuildRequires:  lv2-devel >= 1.14.0
20 BuildRequires:  pkgconfig
21 BuildRequires:  python
22 BuildRequires:  qt4-build >= 4.0.0
23 BuildRequires:  qt5-build >= 5.1.0
24 BuildRequires:  serd-devel >= 0.14.0
25 BuildRequires:  sord-devel >= 0.12.0
26 BuildRequires:  sratom-devel >= 0.4.0
27 BuildRequires:  suil-devel >= 0.6.0
28 Requires:       Qt5Gui >= 5.1.0
29 Requires:       QtGui >= 4.0.0
30 Requires:       gtk+2 >= 2:2.18.0
31 Requires:       gtk+3 >= 3.0.0
32 Requires:       gtkmm >= 2.20.0
33 Requires:       jack-audio-connection-kit-libs >= 0.120.0
34 Requires:       lilv >= 0.24.0
35 Requires:       lv2 >= 1.14.0
36 Requires:       serd >= 0.14.0
37 Requires:       sord >= 0.12.0
38 Requires:       sratom >= 0.4.0
39 Requires:       suil >= 0.6.0
40 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
41
42 %description
43 Jalv is a simple but fully featured LV2 host for JACK. It runs LV2
44 plugins and exposes their ports as JACK ports, essentially making any
45 LV2 plugin function as a JACK application.
46
47 %description -l pl.UTF-8
48 Jalv to prosty, ale w pełni funkcjonalny host LV2 dla JACK-a.
49 Uruchamia wtyczki LV2 i udostępnia ich porty jako porty JACK-a, w
50 szczególności pozwalając dowolnej wtyczce LV2 działać jako aplikacja
51 JACK-a.
52
53 %prep
54 %setup -q
55
56 %build
57 # recent libsigc++/gtkmm requires C++11; don't use waf --strict as it adds -ansi which disables C++11
58 CC="%{__cc}" \
59 CXX="%{__cxx}" \
60 CFLAGS="%{rpmcflags}" \
61 CXXFLAGS="%{rpmcxxflags} -std=c++0x" \
62 MOC=%{_bindir}/moc-qt4 \
63 ./waf configure \
64         --prefix=%{_prefix} \
65         --libdir=%{_libdir}
66
67 ./waf -v
68
69 %install
70 rm -rf $RPM_BUILD_ROOT
71
72 ./waf install \
73         --destdir=$RPM_BUILD_ROOT
74
75 %clean
76 rm -rf $RPM_BUILD_ROOT
77
78 %files
79 %defattr(644,root,root,755)
80 %doc AUTHORS COPYING NEWS README
81 %attr(755,root,root) %{_bindir}/jalv
82 %attr(755,root,root) %{_bindir}/jalv.gtk
83 %attr(755,root,root) %{_bindir}/jalv.gtk3
84 %attr(755,root,root) %{_bindir}/jalv.gtkmm
85 %attr(755,root,root) %{_bindir}/jalv.qt4
86 %attr(755,root,root) %{_bindir}/jalv.qt5
87 %{_mandir}/man1/jalv.1*
88 %{_mandir}/man1/jalv.gtk.1*
89 %{_mandir}/man1/jalv.gtkmm.1*
90 %{_mandir}/man1/jalv.qt.1*
This page took 0.050501 seconds and 3 git commands to generate.