blob: c9c8430aaedcda06737ef2669da0b43153acb530 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
andropermsdir = $(datadir)/openida/plugins/python/androperms
androperms_DATA = \
__init__.py \
android.png \
androperms.db \
androperms.py \
defs.py \
manifest.py \
panel.py \
parser.py \
reader.py \
routine.png \
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
|