]> git.pld-linux.org Git - packages/amrnb.git/blob - amrnb.spec
- build system updated to 7.0.0.2
[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:        7.0.0.2
9 Release:        1
10 # 26104-700.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) 2007, 3GPP Organizational Partners (ARIB, ATIS, CCSA, ETSI, 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:  ab3476a0a058c8f2bf026d484fc8a597
20 Source1:        http://www.3gpp.org/ftp/Specs/archive/26_series/26.104/26104-700.zip
21 # NoSource1-md5:        e8cedb8d502294ab7833ced0b407d238
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 ln -s %{SOURCE1} .
64
65 %build
66 %{__libtoolize}
67 %{__aclocal} -I m4
68 %{__autoconf}
69 %{__automake}
70 %configure \
71         %{?with_static_libs:--enable-static}
72
73 %{__make}
74
75 %install
76 rm -rf $RPM_BUILD_ROOT
77
78 %{__make} install \
79         DESTDIR=$RPM_BUILD_ROOT
80
81 %clean
82 rm -rf $RPM_BUILD_ROOT
83
84 %post   -p /sbin/ldconfig
85 %postun -p /sbin/ldconfig
86
87 %files
88 %defattr(644,root,root,755)
89 %doc 26104-700.doc readme.txt
90 %doc AUTHORS COPYING ChangeLog NEWS README TODO
91 %attr(755,root,root) %{_bindir}/amrnb-*
92 %attr(755,root,root) %{_libdir}/libamrnb.so.*.*.*
93 %attr(755,root,root) %ghost %{_libdir}/libamrnb.so.3
94
95 %files devel
96 %defattr(644,root,root,755)
97 %attr(755,root,root) %{_libdir}/libamrnb.so
98 %{_libdir}/libamrnb.la
99 %{_includedir}/amrnb
100
101 %if %{with static_libs}
102 %files static
103 %defattr(644,root,root,755)
104 %{_libdir}/libamrnb.a
105 %endif
This page took 0.114948 seconds and 3 git commands to generate.