Kajamtag Code
Status: Alpha
Brought to you by:
kingoftherings
| File | Date | Author | Commit |
|---|---|---|---|
| bin | 2010-06-17 |
|
[29dedc] make: use CFLAGS variable |
| example | 2010-06-22 |
|
[fd959a] Convert utf16 to utf8 if necessary |
| src | 2010-07-06 |
|
[30a9a3] Kajammer isn't liking storing that data since k... |
| .gitignore | 2010-05-12 |
|
[42a752] autoconf: Install a .pc file |
| AUTHORS | 2009-08-11 |
|
[b3c763] Switched to autotools |
| COPYING | 2009-08-26 |
|
[8c4a47] LGPL |
| ChangeLog | 2010-03-09 |
|
[d1a381] id3: utf-16 support |
| INSTALL | 2009-08-11 |
|
[b3c763] Switched to autotools |
| Makefile.am | 2010-05-12 |
|
[42a752] autoconf: Install a .pc file |
| NEWS | 2009-08-11 |
|
[b3c763] Switched to autotools |
| README | 2010-03-26 |
|
[e12cc6] Remove some sizeof() calls. |
| autogen.sh | 2009-08-12 |
|
[fc8d03] Have autogen.sh automatically run configure. |
| configure.ac | 2010-06-08 |
|
[0f4b52] Check for AC_PROG_CXX |
| libkajamtag.pc.in | 2010-05-12 |
|
[42a752] autoconf: Install a .pc file |
There is a sample C program and Makefile in example/, which I will try keeping up to date. Also, the header files are a good source of information on what parameters a function needs. All the necessary functions to use in your application are in kajamtag.h. To install: ./autogen.sh make make install This places some header files in /usr/include/kajamtag, and places a shared library in /usr/lib or /usr/lib64 named libkajamtag.so #include <kajamtag.h> To link against libkajamtag.so, append -lkajamtag to your gcc compile line. C++ and Python bindings will be coming eventually.