We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Note to anyone who wants to build it under postmarketOS (or Alpine).
Just create a debian chroot
Install debootstrap, which will allow you to 'install' the base Debian system apk add debootstrap
Install Debian stable to /debian debootstrap stable /debian http://deb.debian.org/debian/
Chroot into it chroot /debian /bin/bash
Create a user useradd -m -s $(which bash) debianuser # can name debianuser whatever you'd like
Install build dependencies apt install git cmake python3
Switch to your new user su - debianuser
Then clone the repo and follow the build instructions.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Note to anyone who wants to build it under postmarketOS (or Alpine).
Just create a debian chroot
Install debootstrap, which will allow you to 'install' the base Debian system
apk add debootstrap
Install Debian stable to /debian
debootstrap stable /debian http://deb.debian.org/debian/
Chroot into it
chroot /debian /bin/bash
Create a user
useradd -m -s $(which bash) debianuser # can name debianuser whatever you'd like
Install build dependencies
apt install git cmake python3
Switch to your new user
su - debianuser
Then clone the repo and follow the build instructions.
The text was updated successfully, but these errors were encountered: