Accepting request 81702 from multimedia:libs
- replace _service with real file OBS-URL: https://build.opensuse.org/request/show/81702 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/libogg?expand=0&rev=20
This commit is contained in:
commit
68a072a9c6
17
_service
17
_service
@ -1,17 +0,0 @@
|
||||
<?xml version="1.0" ?>
|
||||
<services>
|
||||
<service name="download_url">
|
||||
<param name="protocol">http</param>
|
||||
<param name="host">downloads.xiph.org</param>
|
||||
<param name="path">/releases/ogg/libogg-1.2.2.tar.gz</param>
|
||||
</service>
|
||||
<service name="verify_file">
|
||||
<param name="file">_service:download_url:libogg-1.2.2.tar.gz</param>
|
||||
<param name="verifier">sha256</param>
|
||||
<param name="checksum">ab000574bc26d5f01284f5b0f50e12dc761d035c429f2e9c70cb2a9487d8cfba</param>
|
||||
</service>
|
||||
<service name="recompress">
|
||||
<param name="file">*.gz</param>
|
||||
</service>
|
||||
<service name="set_version"/>
|
||||
</services>
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:23f7fdd08223e4ebbfdee5c004d00355da089c46cc1524500fcc25a62c813b14
|
||||
size 317882
|
@ -1,122 +0,0 @@
|
||||
#
|
||||
# spec file for package libogg
|
||||
#
|
||||
# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
# upon. The license for this file, and modifications and additions to the
|
||||
# file, is the same license as for the pristine package itself (unless the
|
||||
# license for the pristine package is not an Open Source License, in which
|
||||
# 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 _SO_nr 0
|
||||
|
||||
Name: libogg
|
||||
Version: 1.2.2
|
||||
Release: 1
|
||||
Summary: Ogg Bitstream Library
|
||||
License: BSD3c(or similar)
|
||||
Url: http://www.vorbis.com/
|
||||
#
|
||||
Group: System/Libraries
|
||||
Source: %{name}-%{version}.tar.bz2
|
||||
Source2: baselibs.conf
|
||||
Patch1: lib64.dif
|
||||
Patch2: m4.diff
|
||||
BuildRequires: pkgconfig
|
||||
# bug437293 (SLES10 -> SLES11 upgrade path)
|
||||
%ifarch ppc64
|
||||
Obsoletes: libogg-64bit
|
||||
%endif
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
|
||||
%description
|
||||
Libogg is a library for manipulating ogg bitstreams. It handles both
|
||||
making ogg bitstreams and getting packets from ogg bitstreams.
|
||||
|
||||
Ogg is the native bitstream format of the libvorbis (Ogg Vorbis audio
|
||||
codec ) and the libtheora (Theora video codec)
|
||||
|
||||
%package -n libogg%{_SO_nr}
|
||||
|
||||
Summary: Ogg Bitstream Library
|
||||
Group: System/Libraries
|
||||
# bug437293 (SLES10 -> SLES11 upgrade path)
|
||||
%ifarch ppc64
|
||||
Obsoletes: libogg-64bit
|
||||
%endif
|
||||
#
|
||||
Provides: %{name} = %{version}
|
||||
#openSUSE 10.2
|
||||
Obsoletes: %{name} <= 1.1.3
|
||||
|
||||
%description -n libogg%{_SO_nr}
|
||||
Libogg is a library for manipulating ogg bitstreams. It handles both
|
||||
making ogg bitstreams and getting packets from ogg bitstreams.
|
||||
|
||||
Ogg is the native bitstream format of the libvorbis (Ogg Vorbis audio
|
||||
codec ) and the libtheora (Theora video codec)
|
||||
|
||||
%package devel
|
||||
License: BSD3c(or similar)
|
||||
Summary: Include Files and Libraries mandatory for Ogg Development
|
||||
Group: Development/Libraries/C and C++
|
||||
Requires: glibc-devel
|
||||
Requires: libogg%{_SO_nr} = %{version}
|
||||
# bug437293 (SLES10 -> SLES11 upgrade path)
|
||||
%ifarch ppc64
|
||||
Obsoletes: libogg-devel-64bit
|
||||
%endif
|
||||
#
|
||||
|
||||
%description devel
|
||||
This package contains all necessary include files and libraries needed
|
||||
to compile and develop applications that use libogg.
|
||||
|
||||
%prep
|
||||
%setup -q
|
||||
%patch2
|
||||
if [ "%{_lib}" == "lib64" ]; then
|
||||
%patch1
|
||||
fi
|
||||
|
||||
%build
|
||||
%configure --disable-static
|
||||
%{__make} %{?_smp_mflags}
|
||||
|
||||
%install
|
||||
%{__make} DESTDIR=%{buildroot} docdir=%{_docdir}/%{name}-devel install
|
||||
# remove unneeded files
|
||||
%{__rm} -f %{buildroot}%{_libdir}/*.la
|
||||
|
||||
%check
|
||||
%{__make} check
|
||||
|
||||
%post -n libogg%{_SO_nr} -p /sbin/ldconfig
|
||||
|
||||
%postun -n libogg%{_SO_nr} -p /sbin/ldconfig
|
||||
|
||||
%clean
|
||||
%{__rm} -rf %{buildroot}
|
||||
|
||||
%files -n libogg%{_SO_nr}
|
||||
%defattr(0644,root,root,0755)
|
||||
%doc AUTHORS CHANGES COPYING README
|
||||
%{_libdir}/libogg.so.%{_SO_nr}*
|
||||
|
||||
%files devel
|
||||
%defattr(-,root,root)
|
||||
%{_docdir}/%{name}-devel
|
||||
%{_includedir}/ogg
|
||||
%{_libdir}/libogg.so
|
||||
%{_datadir}/aclocal/ogg.m4
|
||||
%{_libdir}/pkgconfig/ogg.pc
|
||||
|
||||
%changelog
|
3
libogg-1.2.2.tar.gz
Normal file
3
libogg-1.2.2.tar.gz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:ab000574bc26d5f01284f5b0f50e12dc761d035c429f2e9c70cb2a9487d8cfba
|
||||
size 411540
|
@ -1,3 +1,8 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Sep 9 15:01:23 UTC 2011 - coolo@suse.com
|
||||
|
||||
- replace _service with real file
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 8 09:27:17 UTC 2010 - reddwarf@opensuse.org
|
||||
|
||||
|
@ -19,14 +19,14 @@
|
||||
%define _SO_nr 0
|
||||
|
||||
Name: libogg
|
||||
Version: to_be_filled_by_service
|
||||
Release: 2
|
||||
Version: 1.2.2
|
||||
Release: 0
|
||||
Summary: Ogg Bitstream Library
|
||||
License: BSD3c(or similar)
|
||||
Url: http://www.vorbis.com/
|
||||
#
|
||||
Group: System/Libraries
|
||||
Source: %{name}-%{version}.tar.bz2
|
||||
Source: http://downloads.xiph.org/releases/ogg/%{name}-%{version}.tar.gz
|
||||
Source2: baselibs.conf
|
||||
Patch1: lib64.dif
|
||||
Patch2: m4.diff
|
||||
@ -46,7 +46,6 @@ codec ) and the libtheora (Theora video codec)
|
||||
|
||||
%package -n libogg%{_SO_nr}
|
||||
|
||||
|
||||
Summary: Ogg Bitstream Library
|
||||
Group: System/Libraries
|
||||
# bug437293 (SLES10 -> SLES11 upgrade path)
|
||||
|
Loading…
x
Reference in New Issue
Block a user