docs: add new iframe layout
[mesa.git] / docs / download.html
1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
2 <html lang="en">
3 <head>
4 <meta http-equiv="content-type" content="text/html; charset=utf-8">
5 <title>Getting Mesa</title>
6 <link rel="stylesheet" type="text/css" href="mesa.css">
7 </head>
8 <body>
9
10 <div class="header">
11 <h1>The Mesa 3D Graphics Library</h1>
12 </div>
13
14 <iframe src="contents.html"></iframe>
15 <div class="content">
16
17 <h1>Downloading</h1>
18
19 <p>
20 Primary Mesa download site:
21 <a href="ftp://ftp.freedesktop.org/pub/mesa/"
22 target="_parent">freedesktop.org</a> (FTP)
23 </p>
24
25 <p>
26 When a new release is coming, release candidates (betas) may be found
27 <a href="ftp://ftp.freedesktop.org/pub/mesa/beta/" target="_parent">here</a>.
28 </p>
29
30
31 <h1>Unpacking</h1>
32
33 <p>
34 Mesa releases are available in three formats: .tar.bz2, .tar.gz, and .zip
35 </p>
36
37 <p>
38 To unpack .tar.gz files:
39 </p>
40 <pre>
41 tar zxf MesaLib-x.y.z.tar.gz
42 </pre>
43 or
44 <pre>
45 gzcat MesaLib-x.y.z.tar.gz | tar xf -
46 </pre>
47 or
48 <pre>
49 gunzip MesaLib-x.y.z.tar.gz ; tar xf MesaLib-x.y.z.tar
50 </pre>
51 <p>
52 To unpack .tar.bz2 files:
53 </p>
54 <pre>
55 bunzip2 -c MesaLib-x.y.z.tar.gz | tar xf -
56 </pre>
57 <p>
58 To unpack .zip files:
59 </p>
60 <pre>
61 unzip MesaLib-x.y.z.zip
62 </pre>
63
64
65 <h1>Contents</h1>
66
67 <p>
68 After unpacking you'll have these files and directories (among others):
69 </p>
70 <pre>
71 Makefile - top-level Makefile for most systems
72 configs/ - makefile parameter files for various systems
73 include/ - GL header (include) files
74 bin/ - shell scripts for making shared libraries, etc
75 docs/ - documentation
76 src/ - source code for libraries
77 src/mesa - sources for the main Mesa library and device drivers
78 src/gallium - sources for Gallium and Gallium drivers
79 src/glx - sources for building libGL with full GLX and DRI support
80 </pre>
81
82
83 <p>
84 Proceed to the <a href="install.html">compilation and installation
85 instructions</a>.
86 </p>
87
88
89 <h1>Demos, GLUT, and GLU</h1>
90
91 <p>
92 A package of SGI's GLU library is available
93 <a href="ftp://ftp.freedesktop.org/pub/mesa/glu/" target="_parent">here</a>
94 </p>
95
96 <p>
97 A package of Mark Kilgard's GLUT library is available
98 <a href="ftp://ftp.freedesktop.org/pub/mesa/glut/" target="_parent">here</a>
99 </p>
100
101 <p>
102 The Mesa demos collection is available
103 <a href="ftp://ftp.freedesktop.org/pub/mesa/demos/" target="_parent">here</a>
104 </p>
105
106 <p>
107 In the past, GLUT, GLU and the Mesa demos were released in conjunction with
108 Mesa releases. But since GLUT, GLU and the demos change infrequently, they
109 were split off into their own git repositories:
110
111 <a href="http://cgit.freedesktop.org/mesa/glut/">GLUT</a>,
112 <a href="http://cgit.freedesktop.org/mesa/glu/">GLU</a> and
113 <a href="http://cgit.freedesktop.org/mesa/demos/">Demos</a>,
114 </p>
115
116 </div>
117 </body>
118 </html>