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