-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
50 lines (41 loc) · 1.34 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Principia Arch Repository</title>
<style>
body {
background-color: #111;
color: white;
font-family: sans-serif;
font-size: 14pt;
}
a {
color: lightskyblue;
text-decoration: none;
}
pre, code {
color: #ccffcc;
}
.container {
margin: auto;
max-width: 960px;
}
</style>
</head>
<body>
<div class="container">
<h1>Principia Arch Repository</h1>
<p>Custom repository hosting binary packages of Principia. Currently contains x86_64 binary packages <code>principia</code> for the latest stable version and <code>principia-git</code> which gets updated every now and then from the master branch.</p>
<p>To enable it, paste the following in <code>/etc/pacman.conf</code>:</p>
<pre>[principia]
SigLevel = Optional DatabaseOptional
Server = https://arch.principia-web.se/$arch/</pre>
<p>Or run the following oneliner to append it to the file:</p>
<code>echo -e '\n[principia]\nSigLevel = Optional DatabaseOptional\nServer = https://arch.principia-web.se/$arch' | sudo tee -a /etc/pacman.conf</code>
<p>Also see <a href="https://principia-web.se/download#archlinux">the Arch section of the Principia download page</a>.</p>
</div>
</body>
</html>