blob: b7018466e13c5043d26ec038a1001e4b7e7b2b1a (
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
|
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<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>
</head>
<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. In this website, you will find an the APT repository with the
Debian package for Praat that works in the stable (a.k.a “bookworm”)
distribution, 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@/ bookworm main" > /etc/apt/sources.list.d/praat.list
</pre>
<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 praat/bookworm
</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>
</body>
</html>
|