]> git.pld-linux.org Git - packages/ccaudio2.git/blob - ccaudio2.spec
0494547b638d3f356c3b2f91a0ec246753df12ca
[packages/ccaudio2.git] / ccaudio2.spec
1 Summary:        GNU ccAudio2 - a C++ class framework for processing audio files
2 Summary(pl.UTF-8):      GNU ccAudio2 - klasa C++ do przetwarzania plików dźwiękowych
3 Name:           ccaudio2
4 Version:        0.7.7
5 Release:        1
6 License:        GPL
7 Group:          Libraries
8 Source0:        ftp://ftp.gnu.org/gnu/ccaudio/%{name}-%{version}.tar.gz
9 # Source0-md5:  69c8ac35070181e4c1b01ec1ede5087e
10 URL:            http://www.gnu.org/software/ccaudio/
11 BuildRequires:  libgsm-devel
12 BuildRequires:  libstdc++-devel
13 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
14
15 %description
16 The GNU ccAudio package offers a highly portable C++ class framework
17 for developing applications which manipulate audio streams and various
18 disk based audio file formats. At the moment ccaudio is primarly a
19 class framework for handling .au, .wav (RIFF), and various .raw audio
20 encoding formats under POSIX and Win32 systems, though it may expand
21 to become a general purpose audio and soundcard support library.
22 Support for controlling CD audio devices has recently been added as
23 well as support for codecs and other generic audio processing
24 services.
25
26 %description -l pl.UTF-8
27 Pakiet GNU ccAudio oferuje przenośną klasę C++ do tworzenia aplikacji
28 zmieniających strumienie dźwiękowe i różne formaty plików na dyskach.
29 Aktualnie obsługuje pliki .au, .wav (RIFF) i różne formaty kodowania
30 .raw w systemach zgodnych z POSIX oraz Win32, może się jednak
31 rozrosnąć, aby zostać biblioteką ogólnego użytku do dźwięku i kart
32 dźwiękowych. Ostatnio została dodana obsługa sterowania urządzeniami
33 z płytami CD Audio, jak także obsługa kodeków i innych ogólnych usług
34 przetwarzających dźwięk.
35
36 %package devel
37 Summary:        Header files for ccaudio2 library
38 Summary(pl.UTF-8):      Pliki nagłówkowe biblioteki ccaudio2
39 Group:          Development/Libraries
40 Requires:       %{name} = %{version}-%{release}
41
42 %description devel
43 Header files for ccaudio2 library.
44
45 %description devel -l pl.UTF-8
46 Pliki nagłówkowe biblioteki ccaudio2.
47
48 %package static
49 Summary:        Static ccaudio2 library
50 Summary(pl.UTF-8):      Statyczna biblioteka ccaudio2
51 Group:          Development/Libraries
52 Requires:       %{name}-devel = %{version}-%{release}
53
54 %description static
55 Static ccaudio2 library.
56
57 %description static -l pl.UTF-8
58 Statyczna biblioteka ccaudio2.
59
60 %prep
61 %setup -q
62
63 %build
64 %configure
65 %{__make}
66
67 %install
68 rm -rf $RPM_BUILD_ROOT
69
70 %{__make} install \
71         DESTDIR=$RPM_BUILD_ROOT
72
73 %clean
74 rm -rf $RPM_BUILD_ROOT
75
76 %post   -p /sbin/ldconfig
77 %postun -p /sbin/ldconfig
78
79 %files
80 %defattr(644,root,root,755)
81 %doc AUTHORS NEWS README TODO ChangeLog
82 %attr(755,root,root) %{_bindir}/*
83 %attr(755,root,root) %{_libdir}/lib*.so.*.*.*
84 %{_libdir}/%{name}
85 %{_mandir}/man1/*
86
87 %files devel
88 %defattr(644,root,root,755)
89 %doc doc/html/*
90 %attr(755,root,root) %{_libdir}/lib*.so
91 %{_libdir}/lib*.la
92 %{_includedir}/cc++
93 %{_pkgconfigdir}/*.pc
94
95 %files static
96 %defattr(644,root,root,755)
97 %{_libdir}/lib*.a
This page took 0.03721 seconds and 2 git commands to generate.