]> git.pld-linux.org Git - packages/ccaudio2.git/blob - ccaudio2.spec
- BR: libgsm,libstdc++-devel
[packages/ccaudio2.git] / ccaudio2.spec
1 Summary:        GNU ccAudio2 - a C++ class framework for processing audio files
2 Summary(pl):    GNU ccAudio2 - klasa C++ do przetwarzania plików d¼wiêkowych
3 Name:           ccaudio2
4 Version:        0.7.5
5 Release:        0.1
6 License:        GPL
7 Group:          Libraries
8 Source0:        ftp://ftp.gnu.org/gnu/ccaudio/%{name}-%{version}.tar.gz
9 # Source0-md5:  dcb6f88a2495249a2dede67230535b80
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
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 .raw
30 zakodowane w Posix i systemach win32, mo¿e siê jednak rozrosn±æ aby
31 zostaæ bibliotek± ogólnego u¿ytku do d¼wiêku i kart d¼wiêkowych.
32 Ostatnio zosta³a dodana obs³uga d¼wiêkowych CD, jak tak¿e obs³uga
33 kodeków i innych serwisów przetwarzaj±cych d¼wiêk.
34
35 %package devel
36 Summary:        Header files for ccaudio2 library
37 Summary(pl):    Pliki nag³ówkowe biblioteki ccaudio2
38 Group:          Development/Libraries
39 Requires:       %{name} = %{version}-%{release}
40
41 %description devel
42 Header files for ccaudio2 library.
43
44 %description devel -l pl
45 Pliki nag³ówkowe biblioteki ccaudio2.
46
47 %package static
48 Summary:        Static ccaudio2 library
49 Summary(pl):    Statyczna biblioteka ccaudio2
50 Group:          Development/Libraries
51 Requires:       %{name}-devel = %{version}-%{release}
52
53 %description static
54 Static ccaudio2 library.
55
56 %description static -l pl
57 Statyczna biblioteka ccaudio2.
58
59 %prep
60 %setup -q
61
62 %build
63 %configure
64 %{__make}
65
66 %install
67 rm -rf $RPM_BUILD_ROOT
68
69 %{__make} install \
70         DESTDIR=$RPM_BUILD_ROOT
71
72 %clean
73 rm -rf $RPM_BUILD_ROOT
74
75 %post   -p /sbin/ldconfig
76 %postun -p /sbin/ldconfig
77
78 %files
79 %defattr(644,root,root,755)
80 %doc AUTHORS NEWS README TODO ChangeLog
81 %attr(755,root,root) %{_bindir}/*
82 %attr(755,root,root) %{_libdir}/lib*.so.*.*.*
83 %{_libdir}/%{name}
84 %{_mandir}/man1/*
85
86 %files devel
87 %defattr(644,root,root,755)
88 %doc doc/html/*
89 %attr(755,root,root) %{_libdir}/lib*.so
90 %{_libdir}/lib*.la
91 %{_includedir}/cc++
92 %{_pkgconfigdir}/*.pc
93
94 %files static
95 %defattr(644,root,root,755)
96 %{_libdir}/lib*.a
This page took 0.06557 seconds and 3 git commands to generate.