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