-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathinstall.html
More file actions
62 lines (62 loc) · 3.12 KB
/
install.html
File metadata and controls
62 lines (62 loc) · 3.12 KB
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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Installation - Holo</title>
<link rel="stylesheet" type="text/css" href="/site.css">
</head>
<body>
<header>
<div id="header-buttons">
<a href="https://twitter.com/holocm" title="Follow on Twitter"><span class="logo logo-twitter"></span></a>
<a href="https://github.com/holocm" title="Fork on GitHub"><span class="logo logo-github"></span></a>
</div>
<div id="small-logo">
<a href="/index.html"><img src="/img/holo-logo.svg"></a>
</div>
</header>
<nav>
<ul>
<li><a href="/example.html" class="">Example</a></li>
<li><a href="/man/holo.8.html" class="">Docs</a></li>
<li><a href="/install.html" class="self-link">Installation</a></li>
</ul>
</nav>
<section><h1>How to install Holo</h1>
<p>Whenever possible, install Holo as a package. Package sources are listed below by distribution. (If you are a packager,
please <a href="https://github.com/holocm/holo/issues/new">contact us</a> if you're working on getting Holo packaged in your
distribution.)</p>
<h2>From source</h2>
<p>Alternatively, install from source by cloning the corresponding Git repos and looking at the <code>README.md</code>:</p>
<ul>
<li>the core executable: <a href="https://github.com/holocm/holo">holo</a> (including the default set of plugins)</li>
<li>the package building tool: <a href="https://github.com/holocm/holo-build">holo-build</a></li>
</ul>
<h2>Arch Linux packages</h2>
<p>Packages are available from the <a href="https://aur.archlinux.org/packages/?K=holo&SeB=n">AUR</a>. If you prefer pre-compiled
packages, you can use our repository (only available for x86_64 at the moment). Add the following to your
<code>/etc/pacman.conf</code>:</p>
<pre><code>[holo]
Server = https://repo.holocm.org/archlinux/$arch
</code></pre>
<p>The packages are signed with GPG, so you need to import and trust the signing key. The repo contains a keyring package
that you can use for this, but make sure to validate the checksum before installing it.</p>
<pre><code>$ wget https://repo.holocm.org/archlinux/x86_64/holo-keyring-20201009.1-1-any.pkg.tar.xz
...
$ sha256sum < holo-keyring-20201009.1-1-any.pkg.tar.xz
dec378054732fad0109eeff5da3933cefb70eaeb14217f20a33510f3772aea95 -
$ sudo pacman -U holo-keyring-20201009.1-1-any.pkg.tar.xz
...
</code></pre>
<p>To get a list of all packages in the repo, use:</p>
<pre><code>$ sudo pacman -Syl holo
</code></pre>
<p>To give feedback about these packages, please <a href="https://github.com/majewsky/holo-pacman-repo/issues/new">use GitHub Issues</a>.</p>
<h2>Parabola packages</h2>
<p>Parabola includes a Holo package in its [PCR] repository, which is enabled by default:</p>
<pre><code>$ sudo pacman -S holo
</code></pre>
<p>To give feedback on this package, use <a href="https://labs.parabola.nu/projects/issue-tracker/issues">Parabola's bug tracker</a>.</p>
<p>However, Parabola does not include holo-build. Follow the Arch Linux section above to install it.</section>
</body>