source: projects/specs/trunk/s/sbc/sbc-vl.spec @ 11327

Revision 11327, 2.0 KB checked in by tomop, 6 years ago (diff)

sbc-1.3-1

Line 
1Name:          sbc
2Version:       1.3
3Release:       1%{?_dist_release}
4Summary:       Sub Band Codec used by bluetooth A2DP
5Summary(ja):   Bluetooth A2DP で使用する Sub Band Codec
6
7License:       GPLv2 and LGPLv2+
8URL:           http://www.bluez.org
9Group:         System Environment/Libraries
10
11Source0:       http://www.kernel.org/pub/linux/bluetooth/%{name}-%{version}.tar.xz
12
13BuildRoot:     %{_tmppath}/%{name}-%{version}-root
14BuildRequires: libsndfile-devel
15
16%description
17SBC (Sub Band Codec) is a low-complexity audio codec used in the Advanced Audio
18Distribution Profile (A2DP) bluetooth standard but can be used standalone. It
19uses 4 or 8 subbands, an adaptive bit allocation algorithm in combination with
20an adaptive block PCM quantizers.
21
22%package devel
23Summary: Development package for %{name}
24Summary(ja): %{name} の開発用パッケージ
25Group: Development/Libraries
26Requires: %{name}%{?_isa} = %{version}-%{release}
27
28%description devel
29Files for development with %{name}.
30
31%prep
32%setup -q
33
34%build
35%configure --disable-static
36
37make %{?_smp_mflags} V=1
38
39%install
40make install DESTDIR=%{buildroot} INSTALL='install -p'
41
42#Remove libtool archives.
43find %{buildroot} -name '*.la' -exec rm -f {} ';'
44
45%post -p /sbin/ldconfig
46
47%postun -p /sbin/ldconfig
48
49%files
50%doc COPYING AUTHORS ChangeLog
51%{_bindir}/sbc*
52%{_libdir}/libsbc.so.1*
53
54%files devel
55%{_includedir}/sbc/
56%{_libdir}/pkgconfig/sbc.pc
57%{_libdir}/libsbc.so
58
59%changelog
60* Fri Jan 05 2018 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.3-1
61- new upstream release.
62
63* Sat Dec  6 2014 Ryoichi INAGAKI <ryo1@toki.waseda.jp> 1.0-2
64- added Group tag
65
66* Thu Jul 11 2013 Daisuke SUZUKI <daisuke@linux.or.jp> 1.0-1
67- initial build for Vine Linux
68
69* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0-3
70- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
71
72* Tue Dec 18 2012 Rex Dieter <rdieter@fedoraproject.org> 1.0-2
73- track lib soname, minor .spec cleanup
74
75* Sat Dec  1 2012 Peter Robinson <pbrobinson@fedoraproject.org> 1.0-1
76- Initial package
Note: See TracBrowser for help on using the repository browser.