forked from yan12125/python3-android
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenv.py
More file actions
20 lines (18 loc) · 818 Bytes
/
Copy pathenv.py
File metadata and controls
20 lines (18 loc) · 818 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
target_arch = 'arm'
android_api_level = 21
# Python optional modules.
# Available:
# bzip2 - enable the bz2 module and the bzip2 codec
# xz - enable the lzma module and the lzma codec
# openssl - enable the ssl module and SSL/TLS support for sockets
# readline - enable the readline module and command history/the like in the REPL
# ncurses - enable the curses module
# sqlite - enable the sqlite3 module
# gdbm - enable the dbm/gdbm modules
# libffi - enable the ctypes module
# zlib - enable the zlib module
# expat - enable the pyexpat module
# tools - some handy utility scripts from ./devscripts
packages = ('openssl', 'ncurses', 'readline', 'sqlite', 'bzip2', 'xz', 'gdbm', 'libffi', 'zlib', 'expat', 'tools')
# Enable GPG signature verification on source tarballs and patches?
verify_source = True