-
Notifications
You must be signed in to change notification settings - Fork 1.9k
New issue
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
No instructions for utilizing in Arch linux (i686 / x86_64) #876
Comments
Thanks for the information, I've added it to the doc at 5638a53 I notice that your dependencies don't include zlib, which I thought was necessary. Do you have that installed (probably lib32-zlib)? |
I looked for it in installed packages (pacman -Q | grep zlib), because I It must have either: I can track this down as well on Monday. Package info for 64 bit version - Package info for 32 bit version - On Sep 3, 2016 6:51 PM, "Alexander Taylor" notifications@github.com wrote:
|
It got my curiosity up so I SSHd in. Both zlib-1.2.8 64 bit and 32 bit are installed. [image: Inline image 5] [image: Inline image 1] lib32-zlib depends on several packages, one of which is 64 bit zlib [image: Inline image 2] I see that lib32-sdl_image is in the list, and that requires lib32-sdl and still... it wouldn't hurt to add it to the "pacman -S ..." list to make hope this helps. On Sep 4, 2016 9:12 AM, "Jared Fields" jbcomps@gmail.com wrote:
|
It looks like it's probably pulled in as a dependency so I won't modify the doc right now, thanks again for all the information. |
Sounds good. You bet. On Thu, Sep 8, 2016 at 5:43 PM, Alexander Taylor notifications@github.com
|
NOTE: The following commands assume that your user has sudo access. If not, this can be accomplished by "usermod -G wheel {user}" without quotes, as root. It is also necessary to uncomment the following line in /etc/sudoers:
%wheel ALL=(ALL) ALL
If platform is Arch x86_64 Enable multilib repository
Uncomment the following in /etc/pacman.conf:
[multilib]
Include = /etc/pacman.d/mirrorlist
Update the package database
sudo pacman -Syu
If platform is Arch x86_64:
sudo pacman -S jdk7-openjdk
python2
python2-pip
python2-kivy
mesa-libgl
lib32-mesa-libgl
lib32-sdl2
lib32-sdl2_image
lib32-sdl2_mixer
sdl2_ttf
unzip
gcc-multilib
gcc-libs-multilib
If prompted with the following, answer 'y' for both prompts:
::gcc-multilib and gcc are in conflict. Remove gcc?
::gcc-libs-multilib and gcc-libs are in conflict. Remove gcc-libs?
If platform is Arch x86:
sudo pacman -S jdk7-openjdk
python2
python2-pip
python2-kivy
mesa-libgl
sdl2
sdl2_image
sdl2_mixer
sdl2_ttf
unzip
Install Cython:
sudo pip2 install cython
Install buildozer:
git clone http://github.com/kivy/buildozer
sudo python2 setup.py install
DONE!
From here you should be able to run the buildozer build process.
The text was updated successfully, but these errors were encountered: