aboutsummaryrefslogtreecommitdiff
path: root/www/index.html.in
blob: 08d4041c0214735bc7423749c53c92acf0765825 (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
<!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. This website provides an APT repository with the
    Debian packages 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>You can check the available versions for
    the <a href="dists/bookworm/main/binary-amd64/Packages">amd64</a> and
    the <a href="dists/bookworm/main/binary-i386/Packages">i386</a>
    architectures.</p>

    <p>For installing the package, run the following command:</p>

<pre>
  echo "deb http://@WWWHOST@/ bookworm main" | sudo tee /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@ | sudo tee /etc/apt/trusted.gpg.d/praat-cefala.asc
</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>