blob: a369c66155813aa5be43c5016ec42f2d4b108625 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
---
title: "Compile drawterm on Fedora 38"
url: /compile-drawterm-on-fedora-38.html
date: 2023-09-25T09:04:28+02:00
type: note
draft: false
---
First install two dependencies:
```sh
sudo dnf install libX11-devel libXt-devel
```
Clone the repo and compile it:
```sh
git clone git://git.9front.org/plan9front/drawterm
cd drawterm
CONF=unix make
```
That should produce `drawterm` binary.
|