Versions
- Python: 3.9
- OS: MacOS 11.7
- Kivy: 2.1.0
- Cython:
- OpenJDK:
Description
A recipe for psutil used to exist (see #157 , May 27, 2014). The simplest one I tried to create:
from pythonforandroid.recipe import PythonRecipe
class PsutilRecipe(PythonRecipe):
version = "5.9.3"
url = f'https://github.com/giampaolo/psutil/archive/refs/tags/release-{version}.tar.gz'
depends = ["setuptools"]
site_packages_name = 'psutil'
call_hostpython_via_targetpython = False
recipe = PsutilRecipe()
and I have no knowledge of how to amend it (no skill about gcc compiling, linking etc.)