OSDN Git Service

docs: fix unpacking instructions
authorEric Engestrom <eric.engestrom@imgtec.com>
Wed, 8 Feb 2017 11:27:00 +0000 (04:27 -0700)
committerBrian Paul <brianp@vmware.com>
Wed, 8 Feb 2017 19:00:24 +0000 (12:00 -0700)
File names were wrong, file formats were wrong, bunzip command was
wrong...

I also removed all but the simplest example; people who use pipes already
know how to untar, so let's simplify and remove potential confusion for
non-tech-savvy users.

Signed-off-by: Eric Engestrom <eric.engestrom@imgtec.com>
Reviewed-by: Brian Paul <brianp@vmware.com>
docs/download.html

index 2c8e271..a7a6fe6 100644 (file)
@@ -41,35 +41,19 @@ in the same directory, and are recognisable by the
 <h1>Unpacking</h1>
 
 <p>
-Mesa releases are available in three formats: .tar.bz2, .tar.gz, and .zip
+Mesa releases are available in two formats: <tt>.tar.xz</tt> and <tt>.tar.gz</tt>.
 </p>
 
 <p>
-To unpack .tar.gz files:
-</p>
-<pre>
-       tar zxf MesaLib-x.y.z.tar.gz
-</pre>
-or
+To unpack the tarball:
 <pre>
-       gzcat MesaLib-x.y.z.tar.gz | tar xf -
+       tar xf mesa-Y.N.P.tar.xz
 </pre>
 or
 <pre>
-       gunzip MesaLib-x.y.z.tar.gz ; tar xf MesaLib-x.y.z.tar
+       tar xf mesa-Y.N.P.tar.gz
 </pre>
-<p>
-To unpack .tar.bz2 files:
 </p>
-<pre>
-       bunzip2 -c MesaLib-x.y.z.tar.gz | tar xf -
-</pre>
-<p>
-To unpack .zip files:
-</p>
-<pre>
-       unzip MesaLib-x.y.z.zip
-</pre>
 
 
 <h1>Contents</h1>