blob: f44be3cd615221572c2188feecc639a32869bd51 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
andropermsdir = $(datadir)/openida/plugins/python/androperms
androperms_DATA = \
__init__.py \
androperms.db \
androperms.py \
defs.py \
manifest.py \
panel.py \
parser.py \
reader.py \
stack.py \
string.py
androperms.db:
@tmpzip=`tempfile` ; \
wget http://www.android-permissions.org/permissionmap.zip -O $$tmpzip ; \
unzip -p $$tmpzip permissionmap/APICalls.txt | tail -n +2 - > androperms.db ; \
rm $$tmpzip
|