1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
|
Name: remix
Version: 0.2.4
Release: 1
VCS: platform/upstream/remix#accepted/tizen/20130520.100604-0-g928d8d8cbb9d6d518c196c07761fb630c5ac43e8-dirty
License: LGPL-2.1
Summary: An audio sequencing and mixing library
Url: http://www.metadecks.org/software/remix/
Group: Multimedia/Audio
Source0: %{name}-%{version}.tar.gz
Source1001: remix.manifest
BuildRequires: autoconf
BuildRequires: automake
BuildRequires: libtool
BuildRequires: pkgconfig(sndfile)
%description
Remix is an audio sequencing and mixing library that provides a multichannel,
sparse audio data container (streams), a structured mixing abstraction (decks),
and widely useful means of generating control data (via envelopes) and of
caching audio data.
%package -n libremix
Summary: An audio sequencing and mixing library
Group: Libraries
%description -n libremix
Remix is an audio sequencing and mixing library that provides a multichannel,
sparse audio data container (streams), a structured mixing abstraction (decks),
and widely useful means of generating control data (via envelopes) and of
caching audio data.
%package devel
Summary: Libraries, includes, etc to develop remix applications
Group: Libraries
Requires: lib%{name} = %{version}
%description devel
Libraries, include files, etc you can use to develop remix applications.
%prep
%setup -q
cp %{SOURCE1001} .
%build
%reconfigure
make %{?_smp_mflags}
%install
%make_install
%remove_docs
%post -n libremix -p /sbin/ldconfig
%postun -n libremix -p /sbin/ldconfig
%files -n libremix
%manifest %{name}.manifest
%defattr(-,root,root,-)
%license COPYING
%{_libdir}/libremix.so.*
%{_libdir}/libctxdata.so.*
%dir %{_prefix}/lib/remix
%{_prefix}/lib/remix/libremix_ladspa*
%{_prefix}/lib/remix/libremix_noise*
%files devel
%manifest %{name}.manifest
%defattr(-,root,root,-)
%{_libdir}/libremix.so
%{_libdir}/libctxdata.so
%{_libdir}/pkgconfig/*.pc
%{_includedir}/ctxdata.h
%dir %{_includedir}/remix
%{_includedir}/remix/*.h
|