info for building.
[profile/ivi/eet.git] / README.in
1 Eet @VERSION@
2
3 Eet is a tiny library designed to write an arbitary set of chunks of
4 data to a file and optionally compress each chunk (very much like a
5 zip file) and allow fast random-access reading of the file later
6 on. It does not do zip as a zip itself has more complexity than is
7 needed, and it was much simpler to implement this once here.
8
9 It also can encode and decode data structures in memory, as well as
10 image data for saving to eet files or sending across the network to
11 other machines, or just writing to arbitary files on the system. All
12 data is encoded in a platform independant way and can be written and
13 read by any architecture.
14
15 ------------------------------------------------------------------------------
16 BUILDING PACKAGES:
17
18 RPM: To build rpm packages:
19   
20   sudo rpm -ta @PACKAGE@-@VERSION@.tar.gz
21
22 You will find rpm packages in your system /usr/src/redhat/* dirs (note you may
23 not need to use sudo or root if you have your own ~/.rpmrc. see rpm documents
24 for more details)
25
26 DEB: To build deb packages:
27
28   tar zvf @PACKAGE@-@VERSION@.tar.gz
29   cd @PACKAGE@-@VERSION@
30   dpkg-buildpackage -us -uc -rfakeroot
31
32 You will find all the debin source, binary etc. packages put in the parent
33 (..) directory.