diff --git a/pythonforandroid/recipes/libtribler/__init__.py b/pythonforandroid/recipes/libtribler/__init__.py new file mode 100644 index 0000000000..7285dc9107 --- /dev/null +++ b/pythonforandroid/recipes/libtribler/__init__.py @@ -0,0 +1,22 @@ +from pythonforandroid.toolchain import PythonRecipe + +""" +Privacy with BitTorrent and resilient to shut down + +http://www.tribler.org +""" +class LibTriblerRecipe(PythonRecipe): + + version = 'devel' + + url = 'git+https://github.com/Tribler/tribler.git' + + depends = ['apsw', 'cherrypy', 'cryptography', 'decorator', 'feedparser', + 'ffmpeg', 'libnacl', 'libsodium', 'libtorrent', 'm2crypto', + 'netifaces', 'openssl', 'pyasn1', 'pil', 'pycrypto', 'pyleveldb', + 'python2', 'requests', 'twisted'] + + site_packages_name = 'Tribler' + + +recipe = LibTriblerRecipe() \ No newline at end of file