]> git.pld-linux.org Git - packages/libmpd.git/blob - libmpd.spec
0a2f1e1f722f16a8b8a8478b55e661d5272a91b0
[packages/libmpd.git] / libmpd.spec
1 Summary:        MPD client library
2 Summary(pl.UTF-8):      Biblioteka kliencka MPD
3 Name:           libmpd
4 Version:        0.14.0
5 Release:        1
6 License:        GPL
7 Group:          Libraries
8 Source0:        http://download.sarine.nl/gmpc-0.15.0/libmpd-0.14.0.tar.gz
9 # Source0-md5:  44f9e0e3bcaf205b9a0d86cbcca03f9f
10 URL:            http://sarine.nl/gmpc
11 BuildRequires:  autoconf
12 BuildRequires:  automake
13 BuildRequires:  libtool
14 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
15
16 %description
17 Library for Music Player Daemon client development.
18
19 %description -l pl.UTF-8
20 Biblioteka do tworzenia klientów demona MPD (Music Player Daemon).
21
22 %package devel
23 Summary:        Header files for the MPD client library
24 Summary(pl.UTF-8):      Pliki nagłówkowe biblioteki klienckiej MPD
25 Group:          Development/Libraries
26 Requires:       %{name} = %{version}-%{release}
27
28 %description devel
29 Header files for MPD client library.
30
31 %description devel -l pl.UTF-8
32 Pliki nagłówkowe biblioteki klienckiej MPD.
33
34 %package static
35 Summary:        Static MPD client library
36 Summary(pl.UTF-8):      Statyczna biblioteka kliencka MPD
37 Group:          Development/Libraries
38 Requires:       %{name}-devel = %{version}-%{release}
39
40 %description static
41 Static MPD client library.
42
43 %description static -l pl.UTF-8
44 Statyczna biblioteka kliencka MPD.
45
46 %prep
47 %setup -q
48
49 %build
50 %{__libtoolize}
51 %{__aclocal}
52 %{__autoconf}
53 %{__autoheader}
54 %{__automake}
55
56 %configure
57 %{__make}
58
59 %install
60 rm -rf $RPM_BUILD_ROOT
61
62 %{__make} install \
63         DESTDIR=$RPM_BUILD_ROOT
64
65 %clean
66 rm -rf $RPM_BUILD_ROOT
67
68 %post   -p /sbin/ldconfig
69 %postun -p /sbin/ldconfig
70
71 %files
72 %defattr(644,root,root,755)
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}/*
80 %{_pkgconfigdir}/*
81
82 %files static
83 %defattr(644,root,root,755)
84 %{_libdir}/lib*.a
This page took 0.099222 seconds and 3 git commands to generate.