blob: 5cbe8d841453472803cdf19a5326fdaee5ff1000 (
plain)
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
|
<html>
<head>
<style>
body {
text-align: center;
font: 100% sans-serif;
color: #000;
background-color: white;
}
h1 {
color: #333;
font: 90%;
font-weight: 900;
font-style: bold;
text-align: center;
}
#Content {
width: 80%;
margin: 0px auto;
text-align: left;
padding: 15px;
border: 1px dashed #333;
background-color: #ddd;
}
hr {
width: 80%;
border: 0;
height: 1px;
color: #333;
background-color: #333;
}
pre {
background-color: #eee;
}
</style>
<body>
<div id="Content">
<h1>APT repository for backported Praat Debian packages</h1>
<hr>
<p><a href="http://praat.org">Praat</a>, the famous GUI program for
doing speech analysis and synthesis
<a href="https://packages.debian.org/source/sid/praat">is part</a> of
Debian. However, the package is outdated in Debian stable (a.k.a.
"jessie"). In this website, you will find an the APT repository with
the Debian packages for Praat that work in both the stable and testing
(a.k.a "stretch") distributions, for recent upstream versions and for
the amd64 and i386 architectures.</p>
<p>For installing them, run the following command (as root):</p>
<pre>
echo "deb http://@WWWHOST@/ jessie main" > /etc/apt/sources.list.d/praat.list
</pre>
<p>or:</p>
<pre>
echo "deb http://@WWWHOST@/ stretch main" > /etc/apt/sources.list.d/praat.list
</pre>
<p>whether you are using the "jessie" or the "stretch" distribution,
respectively.</p>
<p>This repository is signed. You should add the public GPG key to
your APT configuration, as follows:</p>
<pre>
wget -O - http://@WWWHOST@/@GPGKEY@ | apt-key add -
</pre>
<p>Once this is done, run the following commands:</p>
<pre>
aptitude update
aptitude install prat/jessie
</pre>
<p>or:</p>
<pre>
aptitude update
aptitude install prat/stretch
</pre>
<p>(You might also use "apt-get" instead of "aptitude" in the commands
above.)</p>
<hr>
<p>Problems? Suggestions? Contact rafael AT laboissiere DOT net.</p>
</html>
|