5 Summary: The Vorbis General Audio Compression Codec
9 Group: Libraries/Multimedia
11 URL: http://www.xiph.org/
12 Vendor: Xiphophorus <team@xiph.org>
13 Source: ftp://ftp.xiph.org/pub/ogg/vorbis/%{name}-%{version}.tar.gz
14 BuildRoot: %{_tmppath}/%{name}-root
15 Requires: libogg >= 1.0beta4
18 Ogg Vorbis is a fully open, non-proprietary, patent-and-royalty-free,
19 general-purpose compressed audio format for audio and music at fixed
20 and variable bitrates from 16 to 128 kbps/channel.
23 Summary: Vorbis Library Development
24 Group: Development/Libraries
25 Requires: libogg-devel >= 1.0beta4
26 Requires: libvorbis-devel = %{version}
29 The libvorbis-devel package contains the header files and documentation
30 needed to develop applications with libvorbis.
33 %setup -q -n %{name}-%{version}
36 if [ ! -f configure ]; then
37 CFLAGS="$RPM_OPT_FLAGS" ./autogen.sh --prefix=/usr
39 CFLAGS="$RPM_OPT_FLAGS" ./configure --prefix=/usr
44 [ "$RPM_BUILD_ROOT" != "/" ] && rm -rf $RPM_BUILD_ROOT
45 make DESTDIR=$RPM_BUILD_ROOT install
52 /usr/lib/libvorbis.so.*
53 /usr/lib/libvorbisfile.so.*
54 /usr/lib/libvorbisenc.so.*
62 /usr/share/aclocal/vorbis.m4
63 /usr/include/vorbis/codec.h
64 /usr/include/vorbis/vorbisfile.h
65 /usr/include/vorbis/vorbisenc.h
68 /usr/lib/libvorbisfile.a
69 /usr/lib/libvorbisfile.so
70 /usr/lib/libvorbisenc.a
71 /usr/lib/libvorbisenc.so
74 [ "$RPM_BUILD_ROOT" != "/" ] && rm -rf $RPM_BUILD_ROOT
83 * Sat Oct 21 2000 Jack Moffitt <jack@icecast.org>
84 - initial spec file created