]> sigrok.org Git - libsigrokdecode.git/blame - README
Doxygen: Don't parse anything in tests/ or doxy/.
[libsigrokdecode.git] / README
CommitLineData
804404fc
UH
1-------------------------------------------------------------------------------
2README
3-------------------------------------------------------------------------------
4
5The sigrok project aims at creating a portable, cross-platform,
d3b034e6
UH
6Free/Libre/Open-Source signal analysis software suite that supports various
7device types (such as logic analyzers, oscilloscopes, multimeters, and more).
804404fc
UH
8
9libsigrokdecode is a shared library written in C which provides the basic
10API for running sigrok protocol decoders. The protocol decoders themselves
11are written in Python.
12
13
d3b034e6
UH
14Status
15------
16
17libsigrokdecode is in a usable state and has had official tarball releases.
18
19While the API can change from release to release, this will always be
20properly documented and reflected in the package version number and
21in the shared library / libtool / .so-file version numbers.
22
23However, there are _NO_ guarantees at all for stable APIs in git snapshots!
24Distro packagers should only use released tarballs (no git snapshots).
25
26
804404fc
UH
27Requirements
28------------
29
30 - git
7b56d7a5 31 - gcc (>= 4.0)
066ecdab
UH
32 - make
33 - autoconf >= 2.63
34 - automake >= 1.11
35 - libtool
36 - pkg-config >= 0.22
7560e16c 37 - libglib >= 2.24.0
a0a9afd9 38 - Python >= 3.2
7529cdaa 39 - check >= 0.9.4 (optional, only needed to run unit tests)
a0a9afd9 40 - libsigrok >= 0.2.0 (optional, only needed for the developer PD tests)
804404fc
UH
41
42
43Building and installing
44-----------------------
45
46In order to get the libsigrokdecode source code and build it, run:
47
e0af499b
UH
48 $ git clone git://sigrok.org/libsigrokdecode
49 $ cd libsigrokdecode
804404fc
UH
50 $ ./autogen.sh
51 $ ./configure
52 $ make
53
54For installing libsigrokdecode:
55
56 $ make install
57
d5a4209d 58See INSTALL or the following wiki page for more (OS-specific) instructions:
804404fc 59
d5a4209d 60 http://sigrok.org/wiki/Building
804404fc
UH
61
62
3e1a99c0
UH
63Copyright and license
64---------------------
65
66libsigrokdecode is licensed under the terms of the GNU General Public License
67(GPL), version 3 or later.
68
69The protocol decoders (PDs) included in libsigrokdecode are an integral part
70of the shared library (they are not merely external "plugins", they are not
71external programs that libsigrokdecode calls via fork/exec, they cannot
72function standalone without libsigrokdecode at all, the PDs and the rest of
73the libsigrokdecode codebase share data structures and make function calls
74to each other). Thus, since the PDs are part of the library, they are also
75licensed under the terms of the GPLv3+.
76
77While some individual source code files are licensed under the GPLv2+, and
78some files are licensed under the GPLv3+, this doesn't change the fact that
79the library as a whole is licensed under the terms of the GPLv3+.
80
81Please see the individual source files for the full list of copyright holders.
82
83
804404fc
UH
84Mailing lists
85-------------
86
87There are two mailing lists for sigrok/libsigrokdecode:
88
89 https://lists.sourceforge.net/lists/listinfo/sigrok-devel
90 https://lists.sourceforge.net/lists/listinfo/sigrok-commits
91
92
93IRC
94---
95
96You can find the sigrok developers in the #sigrok IRC channel on Freenode.
97
98
99Website
100-------
101
d3b034e6 102 http://sigrok.org/wiki/Libsigrokdecode
804404fc 103