]> git.pld-linux.org Git - packages/audiere.git/blame - audiere.spec
- libaudiere-1.9.4.so moved to base package
[packages/audiere.git] / audiere.spec
CommitLineData
b74e0d53 1Summary: Portable audio library
2Summary(pl.UTF-8): Przenośna biblioteka audio
3Name: audiere
4Version: 1.9.4
5Release: 1
6License: GPL v2.1+
7Group: Libraries
8Source0: http://dl.sourceforge.net/audiere/%{name}-%{version}.tar.gz
9# Source0-md5: b95dfe6f1e69cfd12371747f22772766
10URL: http://audiere.sourceforge.net/
11BuildRequires: flac-devel
12BuildRequires: libogg-devel
13BuildRequires: libvorbis-devel
14
15%description
16The Audiere Audio System is a portable audio library which supports
17playing MP3, Ogg Vorbis, WAV, IT, XM, S3M, and MOD files. You can use
18it from C, C++, Python, Java, and any language that supports XPCOM
19(JavaScript in Mozilla, for example). It currently supports
20DirectSound 3, DirectSound 8, and arbitrary DLLs for output in
21Windows, and OSS in Linux.
22
23%description -l pl.UTF-8
24Audiere Audio System jest przenośną biblioteką wspierającą
25odtwarzanie plików MP3, Ogg Vorbis, WAV, IT, XM, S3M oraz MOD. Można
26jej używać za pomocą C, C++, Pythona, Javy oraz innych języków
27wspierających XPCOM (jak na przykład JavaScript w Mozilli).
28Biblioteka wspiera obecnie DirectSound 3, DirectSound 8 jak również
29arbitralne biblioteki DLLs dla Windowsa oraz OSS dla Linuxa.
30
31%package devel
32Summary: Header files for FOO library
33Summary(pl.UTF-8): Pliki nagłówkowe biblioteki audiere
34Group: Development/Libraries
35Requires: %{name} = %{version}-%{release}
36
37%description devel
38Header files for audiere library.
39
40%description devel -l pl.UTF-8
41Pliki nagłówkowe biblioteki audiere.
42
43%package static
44Summary: Static audiere library
45Summary(pl.UTF-8): Statyczna biblioteka audiere
46Group: Development/Libraries
47Requires: %{name}-devel = %{version}-%{release}
48
49%description static
50Static audiere library.
51
52%description static -l pl.UTF-8
53Statyczna biblioteka audiere.
54
55%prep
56%setup -q
57
58%build
59%configure
60%{__make}
61
62%install
63rm -rf $RPM_BUILD_ROOT
64
65%{__make} install \
66 DESTDIR=$RPM_BUILD_ROOT
67
68%clean
69rm -rf $RPM_BUILD_ROOT
70
71%files
72%defattr(644,root,root,755)
73%doc doc/*.txt
74%attr(755,root,root) %{_bindir}/*
868f012a 75%attr(755,root,root) %{_libdir}/libaudiere-%{version}.so
b74e0d53 76
77%files devel
78%defattr(644,root,root,755)
868f012a 79%attr(755,root,root) %{_libdir}/libaudiere.so
b74e0d53 80%{_libdir}/libaudiere.la
81%{_includedir}/audiere.h
82
83%files static
84%defattr(644,root,root,755)
85%{_libdir}/lib*.a
This page took 0.049966 seconds and 4 git commands to generate.