SHA256
1
0
forked from pool/libmms

Accepting request 83767 from multimedia:libs

- Changed one remaining case of %{name}0 to %{name}%{soname}
- Removed some extraneous spaces (forwarded request 83766 from TheBlackCat)

OBS-URL: https://build.opensuse.org/request/show/83767
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/libmms?expand=0&rev=2
This commit is contained in:
Sascha Peilicke 2011-09-20 10:58:15 +00:00 committed by Git OBS Bridge
commit a7fb5aca19
2 changed files with 22 additions and 17 deletions

View File

@ -1,3 +1,9 @@
-------------------------------------------------------------------
Tue Sep 20 10:02:16 UTC 2011 - toddrme2178@gmail.com
- Changed one remaining case of %{name}0 to %{name}%{soname}
- Removed some extraneous spaces
-------------------------------------------------------------------
Fri Sep 16 10:01:18 UTC 2011 - toddrme2178@gmail.com

View File

@ -11,13 +11,12 @@
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via http://bugs.opensuse.org/
#
%define soname 0
Name: libmms
Version: 0.6.2
Release: 0
@ -36,57 +35,57 @@ Source1: libmms-relicensing-1.txt
Source2: libmms-relicensing-2.txt
BuildRequires: pkg-config
BuildRequires: pkgconfig(glib-2.0)
%description
LibMMS is a common library for parsing mms:// and mmsh:// type network streams.
These are commonly used to stream Windows Media Video content over the web.
LibMMS itself is only for receiving MMS stream, it doesn't handle sending at
all.
%package -n %{name}%{soname}
Summary: MMS stream protocol library
Group: System/Libraries
%description -n %{name}%{soname}
LibMMS is a common library for parsing mms:// and mmsh:// type network streams.
These are commonly used to stream Windows Media Video content over the web.
LibMMS itself is only for receiving MMS stream, it doesn't handle sending at
all.
%package -n %{name}-devel
Summary: Libmms development files
Group: Development/Libraries/C and C++
Requires: %{name}%{soname} = %{version}
%description -n %{name}-devel
Headers and libraries to program against %{name}
%prep
%setup -q
%build
%configure --disable-static
%{__make} %{?_smp_mflags}
%install
%make_install
%{__rm} -f '%{buildroot}%{_libdir}/%{name}.la'
install -d -m 755 %{buildroot}%{_docdir}/%{name}0
install -d -m 755 %{buildroot}%{_docdir}/%{name}%{soname}
install -m 644 %{SOURCE1} %{buildroot}%{_docdir}/%{name}%{soname}
install -m 644 %{SOURCE2} %{buildroot}%{_docdir}/%{name}%{soname}
%post -n %{name}%{soname} -p /sbin/ldconfig
%postun -n %{name}%{soname} -p /sbin/ldconfig
%files -n %{name}%{soname}
%defattr(0644, root, root, 0755)
%doc AUTHORS ChangeLog COPYING.LIB README README.LICENSE
%{_libdir}/%{name}.so.%{soname}*
%files -n %{name}-devel
%defattr(0644, root, root, 0755)
%{_libdir}/%{name}.so
%{_includedir}/%{name}
%{_libdir}/pkgconfig/%{name}.pc
%changelog