]> git.pld-linux.org Git - packages/amrnb.git/blob - amrnb.spec
- switched to wrapper package (v6.1.0.4) by Stanislav Brabec (contains more fixes)
[packages/amrnb.git] / amrnb.spec
1 #
2 # Conditional build:
3 %bcond_without  static_libs     # don't build static library
4 #
5 Summary:        3GPP AMR-NB Floating-point Speech Codec
6 Summary(pl.UTF-8):      Zmiennoprzecinkowy kodek mowy 3GPP AMR-NB
7 Name:           amrnb
8 Version:        6.1.0.4
9 Release:        1
10 # 26104-610.doc says:
11 # Copyright Notification
12 # No part may be reproduced except as authorized by written permission.
13 # The copyright and the foregoing restriction extend to reproduction in all media.
14 # (c) 2004, 3GPP Organizational Partners (ARIB, CCSA, ETSI, T1, TTA, TTC).
15 # All rights reserved.
16 License:        restricted
17 Group:          Libraries
18 Source0:        http://ftp.penguin.cz/pub/users/utx/amr/%{name}-%{version}.tar.bz2
19 # Source0-md5:  f482cdd0584469ba23ff33c6b331acbd
20 Source1:        http://www.3gpp.org/ftp/Specs/archive/26_series/26.104/26104-610.zip
21 # NoSource1-md5:        cfd9012bff83afdf5ad069b86d3063b6
22 NoSource:       1
23 URL:            http://www.3gpp.org/
24 BuildRequires:  autoconf >= 2.50
25 BuildRequires:  automake
26 BuildRequires:  libtool
27 BuildRequires:  unzip
28 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
29
30 %description
31 3GPP AMR-NB Floating-point Speech Codec.
32
33 %description -l pl.UTF-8
34 Zmiennoprzecinkowy kodek mowy 3GPP AMR-NB.
35
36 %package devel
37 Summary:        Header files for amrnb library
38 Summary(pl.UTF-8):      Pliki nagłówkowe biblioteki amrnb
39 Group:          Development/Libraries
40 Requires:       %{name} = %{version}-%{release}
41
42 %description devel
43 Header files for amrnb library.
44
45 %description devel -l pl.UTF-8
46 Pliki nagłówkowe biblioteki amrnb.
47
48 %package static
49 Summary:        Static amrnb library
50 Summary(pl.UTF-8):      Statyczna biblioteka amrnb
51 Group:          Development/Libraries
52 Requires:       %{name}-devel = %{version}-%{release}
53
54 %description static
55 Static amrnb library.
56
57 %description static -l pl.UTF-8
58 Statyczna biblioteka amrnb.
59
60 %prep
61 %setup -q
62
63 %build
64 %{__libtoolize}
65 %{__aclocal}
66 %{__autoconf}
67 %{__automake}
68 %configure \
69         %{?with_static_libs:--enable-static}
70
71 %{__make}
72
73 %install
74 rm -rf $RPM_BUILD_ROOT
75
76 %{__make} install \
77         DESTDIR=$RPM_BUILD_ROOT
78
79 %clean
80 rm -rf $RPM_BUILD_ROOT
81
82 %post   -p /sbin/ldconfig
83 %postun -p /sbin/ldconfig
84
85 %files
86 %defattr(644,root,root,755)
87 %doc 26104-610.doc readme.txt
88 %doc AUTHORS COPYING ChangeLog NEWS README TODO
89 %attr(755,root,root) %{_bindir}/amrnb-*
90 %attr(755,root,root) %{_libdir}/libamrnb.so.*.*.*
91
92 %files devel
93 %defattr(644,root,root,755)
94 %attr(755,root,root) %{_libdir}/libamrnb.so
95 %{_libdir}/libamrnb.la
96 %{_includedir}/amrnb
97
98 %if %{with static_libs}
99 %files static
100 %defattr(644,root,root,755)
101 %{_libdir}/libamrnb.a
102 %endif
This page took 0.052632 seconds and 3 git commands to generate.