]> git.pld-linux.org Git - packages/taglib.git/blob - taglib.spec
6bb0e68e9310f0566b1681626ad1ff27e4ad236d
[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:        1
9 License:        LGPL v2.1 or MPL v1.1
10 Group:          X11/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:         taglib-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:          X11/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 %prep
45 %setup -q
46
47 %build
48 install -d build
49 cd build
50 %cmake .. \
51         -DCMAKE_INSTALL_PREFIX=%{_prefix} \
52         -DLIB_INSTALL_DIR=%{_libdir} \
53 %if "%{_lib}" == "lib64"
54         -DLIB_SUFFIX=64 \
55 %endif
56         -DCMAKE_BUILD_TYPE=%{!?debug:Release}%{?debug:Debug} \
57         -DCMAKE_CXX_FLAGS_RELEASE="-DNDEBUG" \
58         -DCMAKE_VERBOSE_MAKEFILE=ON \
59         -DWITH_ASF=ON \
60         -DWITH_MP4=ON
61
62 %{__make}
63
64 %install
65 rm -rf $RPM_BUILD_ROOT
66
67 %{__make} -C build install \
68         DESTDIR=$RPM_BUILD_ROOT
69
70 %clean
71 rm -rf $RPM_BUILD_ROOT
72
73 %post   -p /sbin/ldconfig
74 %postun -p /sbin/ldconfig
75
76 %files
77 %defattr(644,root,root,755)
78 %attr(755,root,root) %{_libdir}/libtag.so.*.*.*
79 %attr(755,root,root) %ghost %{_libdir}/libtag.so.?
80 %attr(755,root,root) %{_libdir}/libtag_c.so.*.*.*
81 %attr(755,root,root) %ghost %{_libdir}/libtag_c.so.?
82
83 %files devel
84 %defattr(644,root,root,755)
85 %attr(755,root,root) %{_bindir}/taglib-config
86 %{_libdir}/libtag.so
87 %{_libdir}/libtag_c.so
88 %{_pkgconfigdir}/taglib.pc
89 %{_pkgconfigdir}/taglib_c.pc
90 %{_includedir}/taglib
This page took 0.036032 seconds and 2 git commands to generate.