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