blob: 0136bb9d1762f68d5479004e383ed1b0cd84da76 (
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
|
<!doctype html>
<html lang="EN">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="/style.css">
<title>Install the Chawan text browser on Artix</title>
</head>
<body>
<header>
<h1>Bloggings</h1>
<a href="/index.php">Back</a>
</header>
<main>
<article>
<h2>Install the Chawan text browser on Artix</h2>
<h3>2025-06-15</h3>
<h4>the Arch package doesn't compile, here's the solution</h4>
<p>The package chawan-git in the AUR doesn't compile as the included NIM version is too old</p>
<p>Here's how I installed it in <a href="https://artixlinux.org/">Artix Linux</a></p>
<p>Install the NIM compiler from <a href="https://nim-lang.org/install.html"> https://nim-lang.org/install.html</a></p>
<p>The default dependancies were already installed on my hard disk: (OpenSSL, libssh2, brotli)</p>
<code>cd ~/src
git clone https://git.sr.ht/~bptato/chawan && cd chawan
make
sudo make install
cha -V</code>
<p>And it's done. I use mostly use chawan as newsboat's browser, it's really good.</p>
<p>Thanks to <a href="https://github.com/kachick/chawan?tab=readme-ov-file">Kachick</a></p>
<p>Previous article: <a href="/articles/2025/Newsboat-browser:-rdrview-or-chawan.html">rdrview or chawan</a></p>
</article>
</main>
<footer>
<p> </p>
<p>§</p>
</footer>
</body>
</html>
|