From c2a37bcf7ee208057817ed53e8ffa08fbeb94bad Mon Sep 17 00:00:00 2001 From: zaemiel Date: Sun, 28 Apr 2019 11:54:49 +0300 Subject: [PATCH 1/5] Readme for the Buildozer installation process --- README.md | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..e6df8b2 --- /dev/null +++ b/README.md @@ -0,0 +1,18 @@ +# Index + +## Installation Kivy and Buildozer on Ubuntu 18.04 based distros + +The install-kivy-buildozer-dependencies.sh contains the complete list of the Buildozer dependencies. So the easiest way to install Buildozer is to use the install-kivy-buildozer-dependencies.sh. + +1. Download the **install-kivy-buildozer-dependencies.sh** any way you like. E.g. + + ```curl -LJ0 https://raw.githubusercontent.com/HeaTTheatR/KivyMD-data/master/install-kivy-buildozer-dependencies.sh +``` + +2. Add execution permissions: + + ```chmod +x install-kivy-buildozer-dependencies.sh``` + +3. Run the script: + + ```./install-kivy-buildozer-dependencies.sh``` From 69aba116cdf5806a525b95bc21487cc87226c69d Mon Sep 17 00:00:00 2001 From: zaemiel Date: Sun, 28 Apr 2019 11:57:57 +0300 Subject: [PATCH 2/5] Readme markdown correction --- README.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/README.md b/README.md index e6df8b2..de82617 100644 --- a/README.md +++ b/README.md @@ -6,8 +6,7 @@ The install-kivy-buildozer-dependencies.sh contains the complete list of the Bui 1. Download the **install-kivy-buildozer-dependencies.sh** any way you like. E.g. - ```curl -LJ0 https://raw.githubusercontent.com/HeaTTheatR/KivyMD-data/master/install-kivy-buildozer-dependencies.sh -``` + ```curl -LJ0 https://raw.githubusercontent.com/HeaTTheatR/KivyMD-data/master/install-kivy-buildozer-dependencies.sh``` 2. Add execution permissions: From f0b0e0406fb6822c98110b8102e98a393abeb19a Mon Sep 17 00:00:00 2001 From: Oleg Molchanov Date: Sun, 28 Apr 2019 12:20:33 +0300 Subject: [PATCH 3/5] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index de82617..2a9d9db 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ The install-kivy-buildozer-dependencies.sh contains the complete list of the Bui 1. Download the **install-kivy-buildozer-dependencies.sh** any way you like. E.g. - ```curl -LJ0 https://raw.githubusercontent.com/HeaTTheatR/KivyMD-data/master/install-kivy-buildozer-dependencies.sh``` + ```curl -LJO https://raw.githubusercontent.com/HeaTTheatR/KivyMD-data/master/install-kivy-buildozer-dependencies.sh``` 2. Add execution permissions: From d8832d383aa806064afd97c18994fbd85d97240a Mon Sep 17 00:00:00 2001 From: zaemiel Date: Wed, 1 May 2019 13:05:43 +0300 Subject: [PATCH 4/5] Create buildozer-repo folder to resolve import modules conflict --- install-kivy-buildozer-dependencies.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/install-kivy-buildozer-dependencies.sh b/install-kivy-buildozer-dependencies.sh index 621ac6a..ac1b76e 100644 --- a/install-kivy-buildozer-dependencies.sh +++ b/install-kivy-buildozer-dependencies.sh @@ -56,6 +56,9 @@ sudo apt install -y \ cmake # Install Buildozer +mkdir ~/buildozer-repo +cd ~/buildozer-repo + git clone https://github.com/kivy/buildozer.git cd buildozer sudo python3 setup.py install From 009a4a4d4f5b82894d8747fd93bf05f184d72811 Mon Sep 17 00:00:00 2001 From: zaemiel Date: Thu, 30 Jan 2020 19:37:57 +0300 Subject: [PATCH 5/5] automake, libtool, pkgconf added --- install-kivy-buildozer-dependencies.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/install-kivy-buildozer-dependencies.sh b/install-kivy-buildozer-dependencies.sh index ac1b76e..df07d06 100644 --- a/install-kivy-buildozer-dependencies.sh +++ b/install-kivy-buildozer-dependencies.sh @@ -51,8 +51,11 @@ sudo apt install -y \ libltdl-dev \ libffi-dev \ libssl-dev \ + automake \ autoconf \ - autotools-dev + autotools-dev \ + pkgconf \ + libtool \ cmake # Install Buildozer