Browse Source

sbc: new package

git-svn-id: http://trac.vinelinux.org/repos/projects/specs@7789 ec354946-7b23-47d6-9f5a-488ba84defc7
daisuke 10 years ago
parent
commit
b40653d52b
1 changed files with 67 additions and 0 deletions
  1. 67 0
      s/sbc/sbc-vl.spec

+ 67 - 0
s/sbc/sbc-vl.spec

@@ -0,0 +1,67 @@
+Name:          sbc
+Version:       1.0
+Release:       1%{?_dist_release}
+Summary:       Sub Band Codec used by bluetooth A2DP
+Summary(ja):   Bluetooth A2DP で使用する Sub Band Codec
+
+License:       GPLv2 and LGPLv2+
+URL:           http://www.bluez.org
+Source0:       http://www.kernel.org/pub/linux/bluetooth/%{name}-%{version}.tar.gz
+
+BuildRequires: libsndfile-devel
+
+%description
+SBC (Sub Band Codec) is a low-complexity audio codec used in the Advanced Audio 
+Distribution Profile (A2DP) bluetooth standard but can be used standalone. It 
+uses 4 or 8 subbands, an adaptive bit allocation algorithm in combination with 
+an adaptive block PCM quantizers.
+
+%package devel
+Summary: Development package for %{name}
+Summary(ja): %{name} の開発用パッケージ
+Group: Development/Libraries
+Requires: %{name}%{?_isa} = %{version}-%{release}
+
+%description devel
+Files for development with %{name}.
+
+%prep
+%setup -q
+
+%build
+%configure --disable-static
+
+make %{?_smp_mflags} V=1
+
+%install
+make install DESTDIR=%{buildroot} INSTALL='install -p'
+
+#Remove libtool archives.
+find %{buildroot} -name '*.la' -exec rm -f {} ';'
+
+%post -p /sbin/ldconfig
+
+%postun -p /sbin/ldconfig
+
+%files
+%doc COPYING AUTHORS ChangeLog
+%{_bindir}/sbc*
+%{_libdir}/libsbc.so.1*
+
+%files devel
+%{_includedir}/sbc/
+%{_libdir}/pkgconfig/sbc.pc
+%{_libdir}/libsbc.so
+
+%changelog
+* Thu Jul 11 2013 Daisuke SUZUKI <daisuke@linux.or.jp> 1.0-1
+- initial build for Vine Linux
+
+* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0-3
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
+
+* Tue Dec 18 2012 Rex Dieter <rdieter@fedoraproject.org> 1.0-2
+- track lib soname, minor .spec cleanup
+
+* Sat Dec  1 2012 Peter Robinson <pbrobinson@fedoraproject.org> 1.0-1
+- Initial package