]> sigrok.org Git - libsigrokdecode.git/blame_incremental - README
lpc: Fix handling of optional probes.
[libsigrokdecode.git] / README
... / ...
CommitLineData
1-------------------------------------------------------------------------------
2README
3-------------------------------------------------------------------------------
4
5The sigrok project aims at creating a portable, cross-platform,
6Free/Libre/Open-Source signal analysis software suite that supports various
7device types (such as logic analyzers, oscilloscopes, multimeters, and more).
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
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
27Requirements
28------------
29
30 - git
31 - gcc (>= 4.0)
32 - make
33 - autoconf >= 2.63
34 - automake >= 1.11
35 - libtool
36 - pkg-config >= 0.22
37 - libglib >= 2.24.0
38 - Python >= 3.0
39
40
41Building and installing
42-----------------------
43
44In order to get the libsigrokdecode source code and build it, run:
45
46 $ git clone git://sigrok.org/libsigrokdecode
47 $ cd libsigrokdecode
48 $ ./autogen.sh
49 $ ./configure
50 $ make
51
52For installing libsigrokdecode:
53
54 $ make install
55
56See INSTALL or the following wiki page for more (OS-specific) instructions:
57
58 http://sigrok.org/wiki/Building
59
60
61Copyright and license
62---------------------
63
64libsigrokdecode is licensed under the terms of the GNU General Public License
65(GPL), version 3 or later.
66
67The protocol decoders (PDs) included in libsigrokdecode are an integral part
68of the shared library (they are not merely external "plugins", they are not
69external programs that libsigrokdecode calls via fork/exec, they cannot
70function standalone without libsigrokdecode at all, the PDs and the rest of
71the libsigrokdecode codebase share data structures and make function calls
72to each other). Thus, since the PDs are part of the library, they are also
73licensed under the terms of the GPLv3+.
74
75While some individual source code files are licensed under the GPLv2+, and
76some files are licensed under the GPLv3+, this doesn't change the fact that
77the library as a whole is licensed under the terms of the GPLv3+.
78
79Please see the individual source files for the full list of copyright holders.
80
81
82Mailing lists
83-------------
84
85There are two mailing lists for sigrok/libsigrokdecode:
86
87 https://lists.sourceforge.net/lists/listinfo/sigrok-devel
88 https://lists.sourceforge.net/lists/listinfo/sigrok-commits
89
90
91IRC
92---
93
94You can find the sigrok developers in the #sigrok IRC channel on Freenode.
95
96
97Website
98-------
99
100 http://sigrok.org/wiki/Libsigrokdecode
101