lbry-android/p4a/pythonforandroid/recipes/libtribler/__init__.py

30 lines
705 B
Python
Raw Normal View History

from pythonforandroid.recipe import PythonRecipe
2017-08-13 03:24:00 +02:00
"""
Privacy with BitTorrent and resilient to shut down
http://www.tribler.org
"""
2017-08-13 03:24:00 +02:00
class LibTriblerRecipe(PythonRecipe):
version = 'devel'
url = 'git+https://github.com/Tribler/tribler.git'
depends = ['apsw', 'cryptography', 'ffmpeg', 'libsodium', 'libtorrent', 'm2crypto',
'netifaces', 'openssl', 'pil', 'pycrypto', 'pyleveldb', 'twisted',
2017-08-13 03:24:00 +02:00
]
conflicts = ['python3']
2017-08-13 03:24:00 +02:00
python_depends = ['chardet', 'cherrypy', 'configobj', 'decorator', 'feedparser',
'libnacl', 'pyasn1', 'requests', 'six',
]
site_packages_name = 'Tribler'
recipe = LibTriblerRecipe()