mirror of
https://github.com/ptitSeb/box86.git
synced 2025-08-28 17:13:48 +02:00
24 lines
1.3 KiB
Markdown
24 lines
1.3 KiB
Markdown
# The directory containing all PKGBUILDs for BOX86
|
|
## FAQ
|
|
### 1. How to use it?
|
|
Just download the `PKGBUILD-<your-platform>` (no need to download the whole repository), go to directory where you downloaded and type:
|
|
```sh
|
|
mv ./PKGBUILD-<your-platform> ./PKGBUILD
|
|
cd ..
|
|
makepkg -si
|
|
```
|
|
This will copy the PKGBUILD for your platform (where you type your platform name instead of `<your-platform>`), build it and install the PKGBUILD on 32-bit Archlinux ARM.
|
|
|
|
In the future, I might try to do an unified PKGBUILD for all platforms that will recognize your platform automatically.
|
|
|
|
### 2. What platforms are currently supported.
|
|
Most specified in [COMPILE.md](../docs/COMPILE.md). Except PowerPC based.
|
|
|
|
### 3. Any advantages with that sollution?
|
|
This might give you some advantages like those:
|
|
- automatic updates (with some AUR frontends like [`pamac-aur`](https://aur.archlinux.org/packages/pamac-aur/) or [`yay`](https://aur.archlinux.org/packages/yay));
|
|
- easily uninstall with `pacman -R` when no needed (no need other scripts nor Makefile to do this);
|
|
- your `box86` installation is recognized as a package (where it wasn't when installing with `make install`).
|
|
|
|
|
|
### Note: You can use [makedeb](https://github.com/makedeb/makedeb) (or) [pkgbuild2spec](https://github.com/prozum/pkgbuild2spec) to compile box86 to .deb or .rpm installer files.
|