You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/COMPILE.md
+38-33Lines changed: 38 additions & 33 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,39 +1,11 @@
1
1
Compiling/Installing
2
2
----
3
3
4
-
### Debian-based Linux
5
-
You can use the [Pi-Apps-Coders apt repository](https://github.com/Pi-Apps-Coders/box64-debs) to install precompiled box64 debs, updated every 24 hours.
6
-
7
-
```
8
-
# check if .list file already exists
9
-
if [ -f /etc/apt/sources.list.d/box64.list ]; then
If you don't want to compile box64 yourself and prefer to use third-party pre-build version, go to the [end of the document](#pre-build-packages) for alternatives.
12
5
13
-
# check if .sources file already exists
14
-
if [ -f /etc/apt/sources.list.d/box64.sources ]; then
Signed-By: /usr/share/keyrings/box64-archive-keyring.gpg" | sudo tee /etc/apt/sources.list.d/box64.sources >/dev/null
30
-
31
-
sudo apt update
32
-
sudo apt install box64-generic-arm -y
33
-
```
34
-
35
-
Alternatively, you can generate your own package using the [instructions below](https://github.com/ptitSeb/box64/blob/main/docs/COMPILE.md#debian-packaging).
6
+
You can also generate your own package using the [instructions below](https://github.com/ptitSeb/box64/blob/main/docs/COMPILE.md#debian-packaging).
36
7
8
+
## Per-platform compiling instructions
37
9
----
38
10
39
11
### The general approach is:
@@ -278,7 +250,7 @@ Also, the Static Build is highly experimental, but feedback are always welcomed.
278
250
279
251
----
280
252
281
-
Testing
253
+
## Testing
282
254
----
283
255
A few tests are included with box64.
284
256
@@ -288,6 +260,39 @@ The tests are very basic and only tests some functionality for now.
288
260
289
261
----
290
262
291
-
Debian Packaging
263
+
## Debian Packaging
292
264
----
293
265
Box64 can also be packaged into a .deb file ***using the source code zip from the releases page*** with `DEB_BUILD_OPTIONS=nostrip dpkg-buildpackage -us -uc -nc`. Configure any additional cmake options you might want in `debian/rules`.
266
+
267
+
## Pre-build packages
268
+
----
269
+
### Debian-based Linux
270
+
You can use the [Pi-Apps-Coders apt repository](https://github.com/Pi-Apps-Coders/box64-debs) to install precompiled box64 debs, updated every 24 hours.
271
+
272
+
```
273
+
# check if .list file already exists
274
+
if [ -f /etc/apt/sources.list.d/box64.list ]; then
0 commit comments