]> git.pld-linux.org Git - packages/taglib.git/blob - taglib.spec
344997b1ae350499f5b94cfff91cbba92b6cea8c
[packages/taglib.git] / taglib.spec
1 # TODO:
2 # - dangling patches
3 # - optflags (CMAKE_BUILD_TYPE=Release overrides them)
4 Summary:        A tag library for reading and editing audio meta data
5 Summary(pl.UTF-8):      Biblioteka tag do odczytu i edycji metadanych dotyczących dźwięku
6 Name:           taglib
7 Version:        1.6.3
8 Release:        2
9 License:        LGPL v2.1 or MPL v1.1
10 Group:          Libraries
11 Source0:        http://ktown.kde.org/~wheeler/files/src/%{name}-%{version}.tar.gz
12 # Source0-md5:  ddf02f4e1d2dc30f76734df806e613eb
13 Patch0:         %{name}-libtool-sanitize.patch
14 Patch1:         kde-ac260-lt.patch
15 Patch2:         %{name}-am.patch
16 URL:            http://ktown.kde.org/~wheeler/taglib.html
17 BuildRequires:  cmake >= 2.6.2
18 BuildRequires:  libstdc++-devel
19 BuildRequires:  perl-base
20 BuildRequires:  pkgconfig
21 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
22
23 %description
24 A tag library needed for juk application which is part of
25 kdemultimedia package.
26
27 %description -l pl.UTF-8
28 Biblioteka tag wykorzystywana przez program juk, będący częścią
29 pakietu kdemultimedia.
30
31 %package devel
32 Summary:        libtag - header files
33 Summary(pl.UTF-8):      libtag - pliki nagłówkowe
34 Group:          Development/Libraries
35 Requires:       %{name} = %{version}-%{release}
36 Requires:       libstdc++-devel
37
38 %description devel
39 Header files for tag library.
40
41 %description devel -l pl.UTF-8
42 Pliki nagłówkowe biblioteki tag.
43
44 %package examples
45 Summary:        Example codes for taglib
46 Summary(hu.UTF-8):      Példaprogramok
47 Summary(pl.UTF-8):      Przykładowe programy w postaci źródłowej dla tagliba
48 Group:          Development/Libraries
49
50 %description examples
51 Example codes for taglib.
52
53 %description examples -l hu.UTF-8
54 Példaprogramok.
55
56 %description examples -l pl.UTF-8
57 Przykładowe programy w postaci źródłowej dla tagliba.
58
59 %prep
60 %setup -q
61
62 %build
63 install -d build
64 cd build
65 %cmake .. \
66         -DCMAKE_INSTALL_PREFIX=%{_prefix} \
67         -DLIB_INSTALL_DIR=%{_libdir} \
68 %if "%{_lib}" == "lib64"
69         -DLIB_SUFFIX=64 \
70 %endif
71         -DCMAKE_BUILD_TYPE=%{!?debug:Release}%{?debug:Debug} \
72         -DCMAKE_CXX_FLAGS_RELEASE="-DNDEBUG" \
73         -DCMAKE_VERBOSE_MAKEFILE=ON \
74         -DWITH_ASF=ON \
75         -DWITH_MP4=ON
76
77 %{__make}
78
79 %install
80 rm -rf $RPM_BUILD_ROOT
81
82 %{__make} -C build install \
83         DESTDIR=$RPM_BUILD_ROOT
84
85 install -d $RPM_BUILD_ROOT%{_examplesdir}/%{name}-%{version}
86 cp -r examples/* $RPM_BUILD_ROOT%{_examplesdir}/%{name}-%{version}
87
88 %clean
89 rm -rf $RPM_BUILD_ROOT
90
91 %post   -p /sbin/ldconfig
92 %postun -p /sbin/ldconfig
93
94 %files
95 %defattr(644,root,root,755)
96 %attr(755,root,root) %{_libdir}/libtag.so.*.*.*
97 %attr(755,root,root) %ghost %{_libdir}/libtag.so.1
98 %attr(755,root,root) %{_libdir}/libtag_c.so.*.*.*
99 %attr(755,root,root) %ghost %{_libdir}/libtag_c.so.0
100
101 %files devel
102 %defattr(644,root,root,755)
103 %attr(755,root,root) %{_bindir}/taglib-config
104 %{_libdir}/libtag.so
105 %{_libdir}/libtag_c.so
106 %{_pkgconfigdir}/taglib.pc
107 %{_pkgconfigdir}/taglib_c.pc
108 %{_includedir}/taglib
109
110 %files examples
111 %defattr(644,root,root,755)
112 %{_examplesdir}/%{name}-%{version}
This page took 0.035096 seconds and 2 git commands to generate.