2017-08-13 03:24:00 +02:00
|
|
|
from pythonforandroid.recipe import CompiledComponentsPythonRecipe
|
|
|
|
|
|
|
|
|
|
|
|
class NetifacesRecipe(CompiledComponentsPythonRecipe):
|
|
|
|
|
2019-03-30 21:58:45 +01:00
|
|
|
version = '0.10.9'
|
2017-08-13 03:24:00 +02:00
|
|
|
|
2019-03-30 21:58:45 +01:00
|
|
|
url = 'https://files.pythonhosted.org/packages/source/n/netifaces/netifaces-{version}.tar.gz'
|
2017-08-13 03:24:00 +02:00
|
|
|
|
2019-03-30 21:58:45 +01:00
|
|
|
depends = ['setuptools']
|
|
|
|
|
|
|
|
patches = ['fix-build.patch']
|
2017-08-13 03:24:00 +02:00
|
|
|
|
|
|
|
site_packages_name = 'netifaces'
|
|
|
|
|
|
|
|
call_hostpython_via_targetpython = False
|
|
|
|
|
|
|
|
|
|
|
|
recipe = NetifacesRecipe()
|