Initial novacoin support
[electrum-nvc.git] / README
1 Electrum - lightweight Novacoin client
2
3 Licence: GNU GPL v3
4 Author: Thomas Voegtlin
5 Language: Python
6 Homepage: https://electrum.org/
7
8
9 1. GETTING STARTED
10 ------------------
11
12 To run Electrum from this directory, just do:
13
14   ./electrum-nvc
15
16 If you install Electrum on your system, you can run it from any
17 directory:
18
19   sudo python setup.py install
20   electrum-nvc
21
22
23 To start Electrum from your web browser, see
24 http://electrum.org/bitcoin_URIs.html
25
26
27
28 2. HOW OFFICIAL PACKAGES ARE CREATED
29 ------------------------------------
30
31 python mki18n.py
32 pyrcc4 icons.qrc -o gui/qt/icons_rc.py
33 python setup.py sdist --format=zip,gztar
34
35 On Mac OS X:
36
37   # On port based installs
38   sudo python setup-release.py py2app
39
40   # On brew installs
41   ARCHFLAGS="-arch i386 -arch x86_64" sudo python setup-release.py py2app --includes sip
42
43   sudo hdiutil create -fs HFS+ -volname "Electrum-NVC" -srcfolder dist/Electrum-NVC.app dist/electrum-nvc-VERSION-macosx.dmg
44
45