cake
/
libg1m
Archived
1
0
Fork 0
Dépôt historique de la libg1m.
This repository has been archived on 2024-03-16. You can view files and clone it, but cannot push or open issues or pull requests.
Go to file
Thomas Touhey f9220d6bcd latest modifs apparently 2021-04-25 23:03:32 +02:00
doc latest modifs apparently 2021-04-25 23:03:32 +02:00
include Headers, lol 2017-04-22 21:02:13 +02:00
src latest modifs apparently 2021-04-25 23:03:32 +02:00
tools ._. 2017-03-18 12:58:08 +01:00
.editorconfig Should have removed fontcharacter python module for now 2017-01-23 20:20:14 +01:00
.gitignore Corrected things in the lib. 2017-01-27 21:49:04 +01:00
AUTHORS.md More things to study. 2017-04-07 02:34:43 +02:00
LICENSE.md Started changing headers, updated license to LGPL3. 2017-02-24 02:18:10 +01:00
Makefile Corrected configure script installation. 2017-03-18 12:57:14 +01:00
Makefile.msg Finished for the night 2016-12-21 00:24:30 +01:00
Makefile.vars Namespace, started correcting CAS set managing 2017-04-13 00:18:10 +02:00
README.md Added *really* basic double to BCD conversion 2017-03-01 12:36:32 +01:00
TODO.md Corrected documentation 2017-01-10 09:56:24 +01:00
configure Added MCS thingies, started correcting picture decoding 2017-03-21 02:10:01 +01:00

README.md

libg1m - Casio File Format manipulation

Introduction

All of the files created around CASIO calculators are declinations of one format, which I named by the name of one of them : G1M. These formats go from main memory saves to pictures and e-activities (documents).

This library aims to be able to parse and write in all of the available formats, and to centralize the documentation and work on them, in order to provide a simple interface for C programs, that can be adapted to provide other interfaces such as a Python one, and to hide the odd subtilities of this Patchwork As A Format.

Prerequisites

Side note : the library might work with older versions of these dependencies, I took these as a reference because these are the ones I work with.

Making-only dependencies

Name Version
make >= 4.0
gcc >= 4.9
binutils >= 2.25
asciidoc >= 8.6.9
gzip >= 1.6
python3 >= 3.5
pkg-config any

Runtime dependencies

Name Version
zlib >= 1.2.8
libfontcharacter >= 1.0

Building

Just ./configure then make. To install, use make install.

If you're using a custom target, by default, the prefix will be /usr/<target>; to change this, use file options using the configure script options (see ./configure --help). To build a DLL for MS-Windows, use a XXX-wXX-mingwXX target.

To build and install only the lib, use all-lib then install-lib. To build and install only the docs, use all-doc and install-doc.

Other useful targets:

  • uninstall, uninstall-lib, uninstall-bin, uninstall-doc: will try to uninstall using the current configuration (experimental);
  • mostlyclean, clean, clean-doc, mostlyclean-lib, clean-lib: remove built files at different levels;
  • re, re-lib, re-doc: regenerate built files at different levels (clean and build) -- useful when configuration is changed.