]> git.pld-linux.org Git - packages/libcddb.git/blob - libcddb.spec
- updated to 0.9.6
[packages/libcddb.git] / libcddb.spec
1 Summary:        Library to access data on a CDDB server
2 Summary(pl):    Biblioteka dostêpu do danych na serwerze CDDB
3 Name:           libcddb
4 Version:        0.9.6
5 Release:        1
6 License:        LGPL
7 Group:          Libraries
8 Source0:        http://dl.sourceforge.net/libcddb/%{name}-%{version}.tar.gz
9 # Source0-md5:  80269beda3a7a7099bf5492330180e78
10 # Source0-size: 386918
11 URL:            http://libcddb.sourceforge.net/
12 Requires:       automake
13 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
14
15 %description
16 libcddb is a library that implements the different protocols (CDDBP,
17 HTTP, SMTP) to access data on a CDDB server (http://freedb.org/). It
18 tries to be as cross-platform as possible.
19
20 %description -l pl
21 libcddb to biblioteka zawieraj±ca implementacje protoko³ów (CDDBP,
22 HTTP, SMTP) dostêpu do danych na serwerze CDDB (http://freedb.org/).
23 Próbuje byæ przeno¶na na ile to mo¿liwe.
24
25 %package devel
26 Summary:        Header files for libcddb library
27 Summary(pl):    Pliki nag³ówkowe biblioteki libcddb
28 Group:          Development/Libraries
29 Requires:       %{name} = %{version}-%{release}
30
31 %description devel
32 Header files for libcddb library.
33
34 %description devel -l pl
35 Pliki nag³ówkowe biblioteki libcddb.
36
37 %package static
38 Summary:        Static libcddb library
39 Summary(pl):    Statyczna biblioteka libcddb
40 Group:          Development/Libraries
41 Requires:       %{name}-devel = %{version}-%{release}
42
43 %description static
44 Static libcddb library.
45
46 %description static -l pl
47 Statyczna biblioteka libcddb.
48
49 %prep
50 %setup -q
51
52 %build
53 cp -f /usr/share/automake/config.sub .
54 %configure
55 %{__make}
56
57 %install
58 rm -rf $RPM_BUILD_ROOT
59
60 %{__make} install \
61         DESTDIR=$RPM_BUILD_ROOT
62
63 %clean
64 rm -rf $RPM_BUILD_ROOT
65
66 %post   -p /sbin/ldconfig
67 %postun -p /sbin/ldconfig
68
69 %files
70 %defattr(644,root,root,755)
71 %doc AUTHORS ChangeLog NEWS README THANKS TODO
72 %attr(755,root,root) %{_bindir}/*
73 %attr(755,root,root) %{_libdir}/lib*.so.*.*.*
74
75 %files devel
76 %defattr(644,root,root,755)
77 %attr(755,root,root) %{_libdir}/lib*.so
78 %{_libdir}/lib*.la
79 %{_includedir}/cddb
80 %{_pkgconfigdir}/*.pc
81
82 %files static
83 %defattr(644,root,root,755)
84 %{_libdir}/lib*.a
This page took 0.074828 seconds and 3 git commands to generate.