4 Summary: Ogg Bitstream Library
6 Group: System Environment/Libraries
8 URL: http://www.xiph.org/
9 Vendor: Xiph.org Foundation <team@xiph.org>
10 Source: http://www.xiph.org/pub/ogg/vorbis/download/%{name}-%{version}.tar.gz
12 BuildRoot: %{_tmppath}/%{name}-%{version}-root
13 # We're forced to use an epoch since both Red Hat and Ximian use it in their
16 # Dirty trick to tell rpm that this package actually provides what the
17 # last rc and beta was offering
18 Provides: %{name} = %{epoch}:1.0rc3-%{release}
19 Provides: %{name} = %{epoch}:1.0beta4-%{release}
22 Libogg is a library for manipulating ogg bitstreams. It handles
23 both making ogg bitstreams and getting packets from ogg bitstreams.
26 Summary: Ogg Bitstream Library Development
27 Group: Development/Libraries
28 Requires: libogg = %{version}
29 # Dirty trick to tell rpm that this package actually provides what the
30 # last rc and beta was offering
31 Provides: %{name}-devel = %{epoch}:1.0rc3-%{release}
32 Provides: %{name}-devel = %{epoch}:1.0beta4-%{release}
36 The libogg-devel package contains the header files, static libraries
37 and documentation needed to develop applications with libogg.
40 %setup -q -n %{name}-%{version}
43 CFLAGS="$RPM_OPT_FLAGS" ./configure --prefix=%{_prefix} --enable-static
47 [ "$RPM_BUILD_ROOT" != "/" ] && rm -rf $RPM_BUILD_ROOT
49 make DESTDIR=$RPM_BUILD_ROOT install
52 [ "$RPM_BUILD_ROOT" != "/" ] && rm -rf $RPM_BUILD_ROOT
62 %doc AUTHORS CHANGES COPYING README
63 %{_libdir}/libogg.so.*
69 %doc doc/oggstream.html
70 %doc doc/white-ogg.png
71 %doc doc/white-xifish.png
74 %doc doc/ogg/style.css
75 %{_includedir}/ogg/ogg.h
76 %{_includedir}/ogg/os_types.h
77 %{_includedir}/ogg/config_types.h
80 %{_datadir}/aclocal/ogg.m4
83 * Sun Jul 14 2002 Thomas Vander Stichele <thomas@apestaart.org>
84 - update for 1.0 release
85 - conform Group to Red Hat's idea of it
86 - take out case where configure doesn't exist; a tarball should have it
88 * Tue Dec 18 2001 Jack Moffitt <jack@xiph.org>
89 - Update for RC3 release
91 * Sun Oct 07 2001 Jack Moffitt <jack@xiph.org>
92 - add support for configurable prefixes
94 * Sat Sep 02 2000 Jack Moffitt <jack@icecast.org>
95 - initial spec file created