about summary refs log tree commit diff stats
path: root/archlinux/README.md
diff options
context:
space:
mode:
authorptitSeb <sebastien.chev@gmail.com>2021-07-22 14:05:53 +0200
committerGitHub <noreply@github.com>2021-07-22 14:05:53 +0200
commit2f5fe43955b7fb6bdfd5162db1b43d06d333c523 (patch)
tree03cd7a708bda57b4fa2e1ece9beaa02818bd9788 /archlinux/README.md
parent607bb28677cf546d98c8862695599af5cc5ca071 (diff)
parent86820cf1b113131d9ffd4c37cd89a41c277108b6 (diff)
downloadbox64-2f5fe43955b7fb6bdfd5162db1b43d06d333c523.tar.gz
box64-2f5fe43955b7fb6bdfd5162db1b43d06d333c523.zip
Merge pull request #68 from Jai-JAP/aur
Create pkgbuilds in archlinux/ folder
Diffstat (limited to 'archlinux/README.md')
-rw-r--r--archlinux/README.md24
1 files changed, 24 insertions, 0 deletions
diff --git a/archlinux/README.md b/archlinux/README.md
new file mode 100644
index 00000000..4273f546
--- /dev/null
+++ b/archlinux/README.md
@@ -0,0 +1,24 @@
+# The directory containing all PKGBUILDs for BOX64
+## 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 64-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.
+All specified in [COMPILE.md](../COMPILE.md).
+
+### 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 `box64` 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 box64 to .deb or .rpm installer files.
\ No newline at end of file