summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Jones <pjones@xiph.org>2000-04-29 18:02:36 +0000
committerPeter Jones <pjones@xiph.org>2000-04-29 18:02:36 +0000
commitb565197aa051f50b6191912868447c0510ecb288 (patch)
tree6bf1382581b158ea03f244d3fff79ae86e482671
parent40da5a61f0770a19c18de786c65d5f9c487e08b6 (diff)
downloadlibvorbis-git-b565197aa051f50b6191912868447c0510ecb288.tar.gz
README had wrong URLs (I'm assuming the ones that give info instead of
404's are right ;) spec file is the obvious, and RPM spec file. It provides two packages; vorbis and vorbis-devel. I'm not 100% sure things got devided up the best way, but essentially vorbis-devel is the LGPL parts and vorbis is the GPL parts. didn't include cmdline (which isn't built by default) or examples (same reason). svn path=/trunk/vorbis/; revision=347
-rw-r--r--README6
-rw-r--r--vorbis.spec73
2 files changed, 76 insertions, 3 deletions
diff --git a/README b/README
index 35be9490..571f574e 100644
--- a/README
+++ b/README
@@ -45,8 +45,8 @@ the Vorbis specification by the Xiphophorus company (http://www.xiph.org/).
CONTACT:
-The OggSquish homepage is located at 'http://www.xiph.org/OggSquish'.
-Vorbis's homepage is located at 'http://www.xiph.org/OggSquish/vorbis.html'.
+The OggSquish homepage is located at 'http://www.xiph.org/ogg/'.
+Vorbis's homepage is located at 'http://www.xiph.org/ogg/vorbis/'.
Up to date technical documents, contact information, source code and
pre-built utilities may be found there.
@@ -67,4 +67,4 @@ into /usr/local/bin, the ogg player and libvorbis manpages into
Monty <monty@xiph.org>, <xiphmont@mit.edu>
-$Id: README,v 1.1 1999/07/13 06:50:34 mwhitson Exp $
+$Id: README,v 1.2 2000/04/29 18:02:36 pjones Exp $
diff --git a/vorbis.spec b/vorbis.spec
new file mode 100644
index 00000000..e217ad49
--- /dev/null
+++ b/vorbis.spec
@@ -0,0 +1,73 @@
+Summary: The OGG Vorbis lossy audio compression codec.
+Name: vorbis
+Version: 0.0
+Release: 1
+Copyright: GPL
+Group: Development/Libraries
+Source: http://www.xiph.org/vorbis/download/%{name}-%{version}.src.tgz
+Url: http://www.xiph.org/vorbis/index.html
+BuildRoot: /var/tmp/vorbis-root
+
+%description
+Ogg Vorbis is a fully Open, non-proprietary, patent-and-royalty-free,
+general-purpose compressed audio format for high quality (44.1-48.0kHz,
+16+ bit, polyphonic) audio and music at fixed and variable bitrates
+from 16 to 128 kbps/channel. This places Vorbis in the same class as
+audio representations including MPEG-1 audio layer 3, MPEG-4
+audio (AAC and TwinVQ), and PAC.
+
+%package devel
+Copyright: LGPL
+Summary: Development library for OGG Vorbis
+Group: Development/Libraries
+
+%description devel
+Ogg Vorbis is a fully Open, non-proprietary, patent-and-royalty-free,
+general-purpose compressed audio format for high quality (44.1-48.0kHz,
+16+ bit, polyphonic) audio and music at fixed and variable bitrates
+from 16 to 128 kbps/channel. This places Vorbis in the same class as
+audio representations including MPEG-1 audio layer 3, MPEG-4
+audio (AAC and TwinVQ), and PAC.
+
+%prep
+%setup -q
+
+%build
+rm -rf $RPM_BUILD_ROOT
+CFLAGS="${RPM_OPT_FLAGS}" ./configure --prefix=/usr
+make
+
+%install
+rm -rf $RPM_BUILD_ROOT
+
+install -d $RPM_BUILD_ROOT/usr/include/vorbis
+install -d $RPM_BUILD_ROOT/usr/include/vorbis/book
+install -d $RPM_BUILD_ROOT/usr/lib
+install -d $RPM_BUILD_ROOT/usr/bin
+install -m 0755 lib/libvorbis.a $RPM_BUILD_ROOT/usr/lib/
+install -m 0755 lib/vorbisfile.a $RPM_BUILD_ROOT/usr/lib/
+install -m 0644 include/vorbis/*.h $RPM_BUILD_ROOT/usr/include/vorbis/
+install -m 0644 include/vorbis/book/*.vqh $RPM_BUILD_ROOT/usr/include/vorbis/book/
+install -m 0755 -s huff/{residuesplit,huffbuild} $RPM_BUILD_ROOT/usr/bin
+install -m 0755 -s vq/{genericvqtrain,lspvqtrain,residuevqtrain,\
+vqbuild,vqcascade,vqmetrics,vqpartition} \
+ $RPM_BUILD_ROOT/usr/bin/
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%files
+%defattr(-,root,root)
+
+%doc README
+/usr/bin/*
+
+%files devel
+%defattr(-,root,root)
+%doc README docs/*.{gif,html}
+/usr/include/vorbis/*
+/usr/lib/*
+
+%changelog
+* Sat Apr 29 2000 Peter Jones <pjones@redhat.com>
+- first pass.