diff options
| author | Rafael Laboissiere <rafael@laboissiere.net> | 2015-11-11 12:20:59 -0200 |
|---|---|---|
| committer | Rafael Laboissiere <rafael@laboissiere.net> | 2015-11-11 12:20:59 -0200 |
| commit | e707bfca9dadfca8bc0ee89f55f5bdd6ef7250a1 (patch) | |
| tree | 212ecbf2f19b4706b8838bdbdd28dbfc1782b48b /www/index.html.in | |
Initial commit
Diffstat (limited to 'www/index.html.in')
| -rw-r--r-- | www/index.html.in | 101 |
1 files changed, 101 insertions, 0 deletions
diff --git a/www/index.html.in b/www/index.html.in new file mode 100644 index 0000000..d65f60f --- /dev/null +++ b/www/index.html.in @@ -0,0 +1,101 @@ +<html> +<head> +<style> +body { + text-align: center; + font: 100% sans-serif; + color: #000; + background-color: white; +} + +h1 { + color: #333; + font: 120%; + font-weight: 900; + font-style: bold; +} + +#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 the 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> |
