]> git.pld-linux.org Git - packages/flac.git/blob - flac.spec
- added am18 and link patches, new-style bcond
[packages/flac.git] / flac.spec
1 # maybe TODO: split (c++, ogg?)
2 #
3 # Conditional build:
4 %bcond_without  xmms    # don't build XMMS plugin
5 #
6 Summary:        Free Lossless Audio Codec
7 Summary(pl):    Free Lossless Audio Codec - Darmowy Bezstratny Kodek Audio
8 Name:           flac
9 Version:        1.1.0
10 Release:        4
11 License:        GPL/LGPL
12 Group:          Libraries
13 Source0:        http://dl.sourceforge.net/flac/%{name}-%{version}.tar.gz
14 # Source0-md5:  19b456a27b5fcf502c76cc33f33e1490
15 Patch0:         %{name}-lt.patch
16 Patch1:         %{name}-am18.patch
17 Patch2:         %{name}-link.patch
18 Patch3:         %{name}-without_xmms.patch
19 URL:            http://flac.sourceforge.net/
20 BuildRequires:  autoconf
21 BuildRequires:  automake
22 %{?with_xmms:BuildRequires:     id3lib-devel >= 3.8.0}
23 BuildRequires:  libogg-devel >= 1:1.0
24 BuildRequires:  libstdc++-devel
25 BuildRequires:  libtool >= 2:1.4d-3
26 %{?with_xmms:BuildRequires:     rpmbuild(macros) >= 1.125}
27 %{?with_xmms:BuildRequires:     xmms-devel >= 0.9.5.1}
28 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
29
30 %description
31 FLAC is an Open Source lossless audio codec developed by Josh Coalson.
32
33 %description -l pl
34 FLAC jest bezstratnym kodekiem audio z otwartymi ¼ród³ami, rozwijanym
35 przez Josha Coalsona.
36
37 %package devel
38 Summary:        FLAC - development files
39 Summary(pl):    FLAC - pliki nag³ówkowe
40 Group:          Development/Libraries
41 Requires:       %{name} = %{version}
42
43 %description devel
44 The package contains the development header files for FLAC libraries.
45
46 %description devel -l pl
47 Ten pakiet zawiera pliki nag³ówkowe bibliotek FLAC.
48
49 %package static
50 Summary:        FLAC - static libraries
51 Summary(pl):    FLAC - biblioteki statyczne
52 Group:          Development/Libraries
53 Requires:       %{name}-devel = %{version}
54
55 %description static
56 The package contains FLAC static libraries.
57
58 %description static -l pl
59 Ten pakiet zawiera biblioteki statyczne FLAC.
60
61 %package -n xmms-input-flac
62 Summary:        Free Lossless Audio Codec - XMMS plugin
63 Summary(pl):    Wtyczka FLAC dla XMMS
64 License:        GPL/LGPL
65 Group:          Libraries
66 Requires:       %{name} = %{version}
67 Requires:       xmms
68
69 %description -n xmms-input-flac
70 FLAC input plugin for XMMS.
71
72 %description -n xmms-input-flac -l pl
73 Wtyczka dla XMMS umo¿liwiaj±ca odtwarzanie plików w formacie FLAC.
74
75 %prep
76 %setup -q
77 %patch0 -p1
78 %patch1 -p1
79 %patch2 -p1
80 %{!?with_xmms:%patch3 -p1}
81
82 %build
83 %{__libtoolize}
84 %{__aclocal}
85 %{__autoconf}
86 %{__automake}
87 %configure
88 %{__make}
89
90 %install
91 rm -rf $RPM_BUILD_ROOT
92
93 %{__make} install \
94         DESTDIR=$RPM_BUILD_ROOT
95
96 # no makefiles in doc dirs
97 rm -f doc/html/{Makefile*,images/Makefile*,ru/Makefile*}
98
99 %clean
100 rm -rf $RPM_BUILD_ROOT
101
102 %post   -p /sbin/ldconfig
103 %postun -p /sbin/ldconfig
104
105 %files
106 %defattr(644,root,root,755)
107 %doc AUTHORS README doc/html/{*.html,images}
108 %lang(ru) %doc doc/html/ru
109 %attr(755,root,root) %{_bindir}/*
110 %attr(755,root,root) %{_libdir}/lib*.so.*.*
111 %{_mandir}/man1/*
112
113 %files devel
114 %defattr(644,root,root,755)
115 %attr(755,root,root) %{_libdir}/lib*.so
116 %{_libdir}/lib*.la
117 %{_includedir}/*
118 %{_aclocaldir}/*
119
120 %files static
121 %defattr(644,root,root,755)
122 %{_libdir}/lib*.a
123
124 %if %{with xmms}
125 %files -n xmms-input-flac
126 %defattr(644,root,root,755)
127 %attr(755,root,root) %{xmms_input_plugindir}/*.so
128 %{xmms_input_plugindir}/*.la
129 %endif
This page took 0.165353 seconds and 4 git commands to generate.