forked from gregorio-project/gregorio-project.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinstallation-linux.html
109 lines (85 loc) · 3.94 KB
/
installation-linux.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<!--
Gregorio web site.
Copyright (C) 2007-2015 The Gregorio project
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
-->
<title>Gregorio project website</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<meta name="description" content="Free software for typesetting Gregorian chant" lang="en">
<meta name="keywords" content="Gregorian chant, gregorio, gabc, gregoriotex" lang="en">
<meta name="author" content="The Gregorio project">
<link rel="shortcut icon" href="/illus/fav.ico">
<link rel="icon" href="/illus/fav.ico">
<link rel="stylesheet" href="/style.css" type="text/css" title="default">
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<script type="text/javascript" src="gregorio-menu.js"></script>
<script>
var context = 'gregorio';
var title = 'Gregorio project website'
</script>
</head>
<body>
<div id="ban">
<img src="/illus/harpedroite.png" title="" class="hd" alt="" />
<a id="haut" name="haut"></a>
<div id="banniere">
</div>
</div>
<script>write_gre_menu();</script>
<div class="flux">
<!-- IE patch-->
<div class="text">
<!-- End of header -->
<!-- header -->
<h1>Installing Gregorio under Linux</h1>
<p>This page describes the installation and compilation of Gregorio software under a GNU/Linux system. Whether you install a precompiled version or whether you compile from source, it's a quick and easy operation.</p>
<h2>Getting the sources</h2>
<p>To obtain the sources of the stable version, you just need to download them from the <a href="https://github.com/gregorio-project/gregorio/releases">download page</a>, and decompress the archive.</p>
<p>To get the development version, create
a local copy of the repository of the project, with the command:</p>
<div class="commandline">
<code>git clone --depth 1 -b develop https://github.com/gregorio-project/gregorio.git gregorio-git</code><br/>
<code>cd gregorio-git</code>
</div>
<h2>Install dependencies</h2>
<p class="nofirst">Under Ubuntu/Debian/Mint:</p>
<div class="commandline">
<code>sudo aptitude install autotools-dev flex bison libltdl7-dev texlive-luatex autopoint python-fontforge</code>
</div>
For gregorio versions <4.0, is you are using <span style="font-family: monospace;">--enable-xml-read</span> then this additional dependency is needed:
<div class="commandline">
<code>libxml2-dev</code>
</div>
If you're using another distribution, some packages may have a slightly different name.
<h2>Building</h2>
<p class="nofirst">In the directory of the sources, run:</p>
<div class="commandline">
<code>$ ./build.sh</code><br/>
<code>$ sudo ./install.sh</code>
</div>
<h2>Updating</h2>
<p>To update your git version, you just need to go into the directory containing the source files (assuming you kept them), run <code>git pull</code> and recompile with the same commands.</p>
<h2>Next steps</h2>
<p>If you use TeXworks, it can be very helpful to <a href="configuration-texworks.html">configure it for Gregorio</a>. Otherwise, you can refer to the <a href="introduction-commandline.html">command line page</a>.</p>
<!-- footer -->
</div>
<div class="bottom">
</div>
<script>initialize_menu();</script>
</body>
</html>