]> git.pld-linux.org Git - packages/audiere.git/blob - audiere.spec
- pl fixes
[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 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
15
16 %description
17 The Audiere Audio System is a portable audio library which supports
18 playing MP3, Ogg Vorbis, WAV, IT, XM, S3M, and MOD files. You can use
19 it from C, C++, Python, Java, and any language that supports XPCOM
20 (JavaScript in Mozilla, for example). It currently supports
21 DirectSound 3, DirectSound 8, and arbitrary DLLs for output in
22 Windows, and OSS in Linux.
23
24 %description -l pl.UTF-8
25 Audiere Audio System jest przenośną biblioteką obsługującą
26 odtwarzanie plików MP3, Ogg Vorbis, WAV, IT, XM, S3M oraz MOD. Można
27 jej używać z poziomu C, C++, Pythona, Javy oraz innych języków
28 obsługujących XPCOM (jak na przykład JavaScript w Mozilli).
29 Biblioteka jako wyjście obsługuje obecnie DirectSound 3, DirectSound 8
30 jak również dowolne biblioteki DLL dla Windows oraz OSS pod Linuksem.
31
32 %package devel
33 Summary:        Header files for audiere library
34 Summary(pl.UTF-8):      Pliki nagłówkowe biblioteki audiere
35 Group:          Development/Libraries
36 Requires:       %{name} = %{version}-%{release}
37
38 %description devel
39 Header files for audiere library.
40
41 %description devel -l pl.UTF-8
42 Pliki nagłówkowe biblioteki audiere.
43
44 %package static
45 Summary:        Static audiere library
46 Summary(pl.UTF-8):      Statyczna biblioteka audiere
47 Group:          Development/Libraries
48 Requires:       %{name}-devel = %{version}-%{release}
49
50 %description static
51 Static audiere library.
52
53 %description static -l pl.UTF-8
54 Statyczna biblioteka audiere.
55
56 %prep
57 %setup -q
58
59 %build
60 %configure
61 %{__make}
62
63 %install
64 rm -rf $RPM_BUILD_ROOT
65
66 %{__make} install \
67         DESTDIR=$RPM_BUILD_ROOT
68
69 %clean
70 rm -rf $RPM_BUILD_ROOT
71
72 %files
73 %defattr(644,root,root,755)
74 %doc doc/*.txt
75 %attr(755,root,root) %{_bindir}/*
76 %attr(755,root,root) %{_libdir}/libaudiere-%{version}.so
77
78 %files devel
79 %defattr(644,root,root,755)
80 %attr(755,root,root) %{_libdir}/libaudiere.so
81 %{_libdir}/libaudiere.la
82 %{_includedir}/audiere.h
83
84 %files static
85 %defattr(644,root,root,755)
86 %{_libdir}/libaudiere.a
This page took 0.058458 seconds and 3 git commands to generate.