de400ff4425a4c93efcac5ccd0a0d3cb17f8f78f
[framework/uifw/eet.git] / README.in
1 Eet @VERSION@
2
3 Requirements:
4 -------------
5 Must:
6   libc libm zlib libjpeg
7   Windows: evil
8
9 ******************************************************************************
10 ***
11 *** FOR ANY ISSUES WITH EET PLEASE EMAIL:
12 *** enlightenment-devel@lists.sourceforge.net
13 ***
14 ******************************************************************************
15
16 Eet is a tiny library designed to write an arbitary set of chunks of
17 data to a file and optionally compress each chunk (very much like a
18 zip file) and allow fast random-access reading of the file later
19 on. It does not do zip as a zip itself has more complexity than is
20 needed, and it was much simpler to implement this once here.
21
22 It also can encode and decode data structures in memory, as well as
23 image data for saving to eet files or sending across the network to
24 other machines, or just writing to arbitary files on the system. All
25 data is encoded in a platform independant way and can be written and
26 read by any architecture.
27
28 ------------------------------------------------------------------------------
29 COMPILING AND INSTALLING:
30
31   ./configure
32   make
33 (do this as root unless you are installing in your users directories):
34   make install
35
36 ------------------------------------------------------------------------------
37 BUILDING PACKAGES:
38
39 RPM: To build rpm packages:
40
41   sudo rpm -ta @PACKAGE@-@VERSION@.tar.gz
42
43 You will find rpm packages in your system /usr/src/redhat/* dirs (note you may
44 not need to use sudo or root if you have your own ~/.rpmrc. see rpm documents
45 for more details)