]> git.pld-linux.org Git - packages/jalv.git/blame - jalv.spec
- new
[packages/jalv.git] / jalv.spec
CommitLineData
36ded31d
JB
1Summary: Simple but fully featured LV2 host for JACK
2Summary(pl.UTF-8): Prosty, ale w pełni funkcjonalny host LV2 dla JACK-a
3Name: jalv
4Version: 1.0.0
5Release: 1
6License: ISC
7Group: Libraries
8Source0: http://download.drobilla.net/%{name}-%{version}.tar.bz2
9# Source0-md5: f20f81dbb437f4e4ea10e00694f6cc4d
10URL: http://drobilla.net/software/jalv/
11BuildRequires: QtGui-devel >= 4.0.0
12BuildRequires: gtk+2-devel >= 2:2.18.0
13BuildRequires: gtkmm-devel >= 2.20.0
14BuildRequires: jack-audio-connection-kit-devel >= 0.120.0
15BuildRequires: libstdc++-devel
16BuildRequires: lilv-devel >= 0.14.0
17BuildRequires: lv2-devel >= 1.0.0
18BuildRequires: pkgconfig
19BuildRequires: python
20BuildRequires: serd-devel >= 0.4.5
21BuildRequires: sratom-devel >= 0.2.0
22BuildRequires: suil-devel >= 0.6.0
23Requires: QtGui >= 4.0.0
24Requires: gtk+2 >= 2:2.18.0
25Requires: gtkmm >= 2.20.0
26Requires: jack-audio-connection-kit-libs >= 0.120.0
27Requires: lilv >= 0.14.0
28Requires: lv2 >= 1.0.0
29Requires: serd >= 0.4.5
30Requires: sratom >= 0.2.0
31Requires: suil >= 0.6.0
32BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
33
34%description
35Jalv is a simple but fully featured LV2 host for JACK. It runs LV2
36plugins and exposes their ports as JACK ports, essentially making any
37LV2 plugin function as a JACK application.
38
39%description -l pl.UTF-8
40Jalv to prosty, ale w pełni funkcjonalny host LV2 dla JACK-a.
41Uruchamia wtyczki LV2 i udostępnia ich porty jako porty JACK-a, w
42szczególności pozwalając dowolnej wtyczce LV2 działać jako aplikacja
43JACK-a.
44
45%prep
46%setup -q
47
48%build
49CC="%{__cc}" \
50CFLAGS="%{rpmcflags}" \
51./waf configure \
52 --prefix=%{_prefix} \
53 --libdir=%{_libdir} \
54 --strict
55
56./waf -v
57
58%install
59rm -rf $RPM_BUILD_ROOT
60
61./waf install \
62 --destdir=$RPM_BUILD_ROOT
63
64%clean
65rm -rf $RPM_BUILD_ROOT
66
67%post -p /sbin/ldconfig
68%postun -p /sbin/ldconfig
69
70%files
71%defattr(644,root,root,755)
72%doc AUTHORS COPYING NEWS README
73%attr(755,root,root) %{_bindir}/jalv
74%attr(755,root,root) %{_bindir}/jalv.gtk
75%attr(755,root,root) %{_bindir}/jalv.gtkmm
76%attr(755,root,root) %{_bindir}/jalv.qt
77%{_mandir}/man1/jalv.1*
78%{_mandir}/man1/jalv.gtk.1*
79%{_mandir}/man1/jalv.gtkmm.1*
80%{_mandir}/man1/jalv.qt.1*
This page took 0.056699 seconds and 4 git commands to generate.