/[svn]/libgig/trunk/README
ViewVC logotype

Diff of /libgig/trunk/README

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 11 by schoenebeck, Sun Nov 16 17:47:00 2003 UTC revision 923 by schoenebeck, Thu Oct 19 19:01:13 2006 UTC
# Line 1  Line 1 
1    Home
2    ====
3      You can always find the latest version of libgig at:
4      http://stud.hs-heilbronn.de/~cschoene/projects/libgig/
5    
6  Content  Content
7  =======  =======
8    libgig actually consists of three parts:    libgig actually consists of three parts:
# Line 9  Content Line 14  Content
14                                       files and provide abstract access to the                                       files and provide abstract access to the
15                                       data.                                       data.
16    - gig classes (gig.h, gig.cpp):    These are based on the DLS classes and    - gig classes (gig.h, gig.cpp):    These are based on the DLS classes and
17                                       provide the neccessary extensions for                                       provide the necessary extensions for
18                                       the Gigasampler file format.                                       the Gigasampler file format.
19    
20      Beside the actual library there are four example applications:
21    
22        gigdump:     Demo app that prints out the content of a .gig file.
23        gigextract:  Extracts samples from a .gig file.
24        dlsdump:     Demo app that prints out the content of a DLS file.
25        rifftree:    Tool that prints out the RIFF tree of an arbitrary RIFF
26                     file.
27    
28      Since version 3.0.0 libgig also provides write support, that is for
29      creating modifying .gig, DLS and RIFF files.
30    
31  Requirements  Requirements
32  ============  ============
33    I simply used automake & co this time so you will need to have automake,    POSIX systems (e.g. Linux, OS X):
34    autoconf and libtool installed. I used the following versions:    ---------------------------------
35    
36      automake  1.6.3    You need at least to have libtool installed to be able to build the
37      autoconf  2.57    library with "./configure && make".
38    
39    If you want to compile the 'gigextract' application that comes with these    Additionally you need to have either libaudiofile (>= 0.2.3) or
40    sources then you will additionally need to have libaudiofile installed (I    libsndfile (>= 1.0.2) installed which is mandatory to be able to compile
41    used version 0.2.3).    the 'gigextract' example application. But of course 'gigextract' is still
42      just an example application, so it would make sense to compile it only if
43      one of those libraries are available. That would remove that hard
44      dependency to those two libs. But that's not a priority for me now.
45      Note: for Windows systems only libsndfile is available.
46    
47      If you want to regenerate all autotools build files (that is configure,
48      Makefile.in, etc.) then you need to have automake (>= 1.5) and autoconf
49      installed.
50    
51      Non-POSIX systems (e.g. Windows):
52      ---------------------------------
53    
 Non-POSIX systems  
 =================  
54    If you don't have a POSIX system, you have to set 'POSIX' to '0' in RIFF.h.    If you don't have a POSIX system, you have to set 'POSIX' to '0' in RIFF.h.
55    Instead of using POSIX calls then standard C calls will be used for file    Instead of using POSIX calls then standard C calls will be used for file
56    access. This applies e.g. to Windows systems.    access. This applies e.g. to Windows systems. I would appreciate if
57      somebody sends me his MS Visual Studio / .NET, Borland C++ Builder or
58      Apple XCode project file! This might help others to conveniently compile
59      libgig on those platforms as well.
60    
61    Compiling
62    =========
63      You can either compile the sources and install the library directly on
64      your system or you can create Redhat or Debian packages.
65    
66      a) Compiling and installing directly
67    
68      Call './configure && make' on the console to compile the library, all
69      tools and demo applications, documentation and install them with
70      'make install'. The latter has to be called as root.
71    
72      If you are compiling from CVS you have to call 'make -f Makefile.cvs'
73      to generate all autotools build files before calling
74      './configure && make'.
75    
76      You can use 'make distclean' and probably 'make -f Makefile.cvs clean'
77      to clean up everything again. The latter will also delete all automatic
78      generated autools build files.
79    
80      b) Creating Debian packages
81    
82      Use 'dpkg-buildpackage -rfakeroot -b' to compile and create the Debian
83      packages. This will generate 3 Debian packages:
84    
85  Compiling:      libgig:      Contains the shared library files.
86        libgig-dev:  Contains the header files and documentation for building
87                     applications using libgig.
88        gigtools:    Contains the tools and demo applications.
89    
90      You can use 'fakeroot debian/rules clean' to clean up everything again.
91    
92      c) Creating Redhat packages
93    
94      You need to have the rpmbuild tool installed and properly configured to
95      create RPM packages. To create the RPM packages do the following:
96    
97        * Get .spec file generated by ./configure and edit it as appropriate.
98    
99        * Copy the source tarball to "/usr/src/<rpmdir>/SOURCES" directory,
100          where <rpmdir> is dependent to the system you are using. For SuSE
101          <rmpdir> will be "packages", for Mandrake <rpmdir> is "RPM" and for
102          Redhat / Fedora <rpmdir> always equals "redhat".
103    
104        * Build the rpm(s) by invoking 'rpmbuild -bb <specfile>' from the
105          command line.
106    
107      On success, the resulting rpm(s) can usually be found under the proper
108      "/usr/src/<rpmdir>/RPMS/<arch>" directory.
109    
110    Test Cases
111  ==========  ==========
112   - Use './configure && make all' to compile the library and all tools and    The libgig sources come with a tiny console application which allows to
113     demo applications.    automatically test libgig's functions on your system. This test
114      application is not compiled by default, you have to compile it explicitly
115      with the following commands on the console (cppunit has to be installed):
116    
117        cd src/testcases
118        make libgigtests
119    
120   - Beside the actual library there are four applications:    and then run the test application from the same directory with:
121    
122       gigdump:     Demo app that prints out the content of a .gig file.      ./libgigtests
      gigextract:  Extracts samples from a .gig file.  
      dlsdump:     Demo app that prints out the content of a DLS file.  
      rifftree:    Tool that prints out the RIFF tree of an arbitrary RIFF  
                   file.  
123    
124   - If you have Doxygen installed you can generate the API documentation by  License
125     just running 'doxygen' in the sources' top level directory.  =======
126      libgig and its tools are released under the GNU General Public License.
127    
128   - 'make distclean' to clean up everything again  API Documentation
129    =================
130      If you have Doxygen installed you can generate the API documentation by
131      running 'make docs' in the sources' top level directory. The API
132      documentation will be generated in the 'doc' subdirectory.
133    
134  Patches  Patches
135  =======  =======
136    If you find bugs or have improvements, your patches are always welcome!    If you have bug fixes or improvements, your patches are always welcome!
137    Send them either directly to me or to the LinuxSampler developer's mailing    Send them either directly to me or to the LinuxSampler developer's mailing
138    list <linuxsampler-devel@lists.sourceforge.net>.    list <linuxsampler-devel@lists.sourceforge.net>.
139    
140    Bugs
141    ====
142      Please use http://bugs.linuxsampler.org to check and report possible bugs.
143      You might also try to run the "Test Cases" coming with libgig (see above),
144      especially in case you are running on an odd system.
145    
146  Credits  Credits
147  =======  =======
148    This library is based on the reverse engineering work of Paul Kellett and    The initial library was based on the reverse engineering effort of
149    Ruben van Royen. Thanks for your great work!    Paul Kellett and Ruben van Royen. We owe current support for the quite new
150      Gigasampler v3 format to Andreas Persson. Please also have a look at the
151      ChangeLog for all those who contributed. Thanks to all of you for your
152      great work!
153    
154   Christian Schoenebeck <cuse@users.sourceforge.net>   Christian Schoenebeck <cuse@users.sourceforge.net>

Legend:
Removed from v.11  
changed lines
  Added in v.923

  ViewVC Help
Powered by ViewVC