lbry-android/p4a/pythonforandroid/recipes/feedparser/__init__.py
Akinwale Ariwodola 744cfaebc2 Initial commit
2017-08-13 02:24:00 +01:00

10 lines
350 B
Python

from pythonforandroid.toolchain import PythonRecipe
class FeedparserPyRecipe(PythonRecipe):
version = '5.2.1'
url = 'https://github.com/kurtmckee/feedparser/archive/{version}.tar.gz'
depends = ['hostpython2', 'setuptools']
site_packages_name = 'feedparser'
call_hostpython_via_targetpython = False
recipe = FeedparserPyRecipe()