blob: 2d151ce8a796042f11ae94ef3b745ff6bcaf6994 (
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
|
<!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>
sudo apt update
sudo apt install praat/bookworm
</pre>
<hr>
<p>Problems? Suggestions? Contact rafael AT debian DOT org.</p>
</body>
</html>
|