]> git.pld-linux.org Git - packages/flac.git/blob - flac.spec
- PIC problem fixed in proper way (in link patch), removed workaround
[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
89 %{__make}
90
91 %install
92 rm -rf $RPM_BUILD_ROOT
93
94 %{__make} install \
95         DESTDIR=$RPM_BUILD_ROOT
96
97 # no makefiles in doc dirs
98 rm -f doc/html/{Makefile*,images/Makefile*,ru/Makefile*}
99
100 %clean
101 rm -rf $RPM_BUILD_ROOT
102
103 %post   -p /sbin/ldconfig
104 %postun -p /sbin/ldconfig
105
106 %files
107 %defattr(644,root,root,755)
108 %doc AUTHORS README doc/html/{*.html,images}
109 %lang(ru) %doc doc/html/ru
110 %attr(755,root,root) %{_bindir}/*
111 %attr(755,root,root) %{_libdir}/lib*.so.*.*
112 %{_mandir}/man1/*
113
114 %files devel
115 %defattr(644,root,root,755)
116 %attr(755,root,root) %{_libdir}/lib*.so
117 %{_libdir}/lib*.la
118 %{_includedir}/*
119 %{_aclocaldir}/*
120
121 %files static
122 %defattr(644,root,root,755)
123 %{_libdir}/lib*.a
124
125 %if %{with xmms}
126 %files -n xmms-input-flac
127 %defattr(644,root,root,755)
128 %attr(755,root,root) %{xmms_input_plugindir}/*.so
129 %{xmms_input_plugindir}/*.la
130 %endif
This page took 0.089716 seconds and 4 git commands to generate.