/usr/share/doc/libgdf0/README is in libgdf0 0.1.2-2.0build2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
| 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 |  Introduction
==============
libGDF is an implementation of "GDF - A General Dataformat for Biosignals Version V2.20" (See GDF Specification below). It consists of a library, tools and MATLAB bindings, all written in C++.
 License
=========
libGDF is licensed under the GNU LESSER GENERAL PUBLIC LICENSE Version 3, 29 June 2007.
 Building libGDF
=================
a. General
libGDF is using cmake as build system. Out-of-Source builds are recommended. Libraries are built as shared by default. This can be changed at build time.
The default installation prefix is /usr/local.
For advanced configuration of the build process, please refer to the cmake documentation.
b. Linux:
		>> cd path/to/toplevel/sourcedir
		>> mkdir build
		>> cd build
dynamic build:	>> cmake ..
static build:	>> cmake .. -DBUILD_SHARED_LIBS=OFF
		>> make
		>> make install
c. Windows:
	(TODO)
 Building the MATLAB functions
===============================
a. libGDF was installed into the system
	At the MATLAB prompt:
		>> mex gdf_writer.cpp -lGDF
		>> mex gdf_reader.cpp -lGDF
b. libGDF was not installed
	First build libGDF as described above.
	At the MATLAB prompt:
		>> mex gdf_writer.cpp -Ipath/to/toplevel/sourcedir/libgdf/include -Lpath/to/build/dir/libgdf -lGDF
		>> mex gdf_reader.cpp -Ipath/to/toplevel/sourcedir/libgdf/include -Lpath/to/build/dir/libgdf -lGDF
 GDF Specification
===================
The specification of the GDF file format can be found at
http://arxiv.org/pdf/cs/0608052
 |