-
-
Notifications
You must be signed in to change notification settings - Fork 28
/
INSTALL.nl
73 lines (47 loc) · 2.29 KB
/
INSTALL.nl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
Wammu installatie
=================
Pakketten voor Linux
====================
Many distributions come with prebuilt Wammu binaries, if you can use them,
it is definitely the easiest thing. There are also binary packages of latest
release built for many distributions available on Wammu web site
<https://wammu.eu/download/wammu/>.
Bouwen vanaf de broncode
========================
Gebruikt de standaard Python distutils, dus:
python setup.py build
sudo python setup.py install
Je hebt python-gammu en wxPython [1] (Unicode versie) nodig om dit programma
te installeren of te gebruiken. Als je ondersteuning wilt voor het scannen
van Bluetooth-apparaten heb je ook PyBluez [2] nodig. Voor het afhandelen
van inkomende gebeurtenissen is dbus-python [3] nodig.
Voor Windows moet je ook Pywin32 [4] installeren.
Als je om een of andere reden geen afhankelijkheid wilt testen tijdens het
bouwen kun je de --skip-deps optie gebruiken.
[1]: http://wxpython.org/
[2]: http://code.google.com/p/pybluez/
[3]: http://www.freedesktop.org/wiki/Software/DBusBindings
[4]: https://sourceforge.net/projects/pywin32/
Kruiscompilatie voor Windows op Linux
=====================================
Je hebt Wine met alle afhankelijke bibloitheken nodig (zie hierboven waar je
die kunt vinden).
Het is makkelijk om de wammu installer voor een werkende Python omgeving te
bouwen:
wine c:\\python25\\python setup.py build --skip-deps bdist_wininst
Maar op deze manier moet de gebruiker alle Python bibliotheken zelf ook
installeren. Dat is niet erg gebruikersvriendelijk. Dit kan verholpen worden
met behulp van py2exe[5]:
wine c:\\python25\\python setup.py build --skip-deps py2exe
Maar je moet hiervoor een aantal dingen aanpassen om py2exe goed te laten
werken in Wine. Je moet het programma aanpassen met behulp van PE Tools
(zoals beschreven in een Wine [w1] foutmelding. Bovendien moet je een aantal
extra bibliotheken die in de dist map ontbreken kopiëren (python25.dll en
alles van wxPython). Zie het script admin/make-release dat dit automatisch
doet.
Je kunt dan InnoSetup[6] gebruiken om een Wammu installatieprogramma te
bouwen:
wine c:\\Program\ Files\\Inno\ Setup\ 5/\\ISCC.exe wammu.iss
[5]: http://www.py2exe.org/
[6]: http://www.jrsoftware.org/isinfo.php
[w1]: http://bugs.winehq.org/show_bug.cgi?id=3591