Tizen 2.1 base
[framework/uifw/ecore.git] / README.in
1 Ecore @VERSION@
2
3 Requirements:
4 -------------
5
6 Must:
7   libc libm
8
9 Recommended:
10   libX11 libXext libXcursor libXprint libXinerama libXrandr libXss libXrender
11   libXcomposite libXfixes libXdamage libXdpms libXtest OpenSSL CURL
12
13 Optional:
14   XCB SDL DirectFB
15
16 Ecore is the event/X abstraction layer that makes doing selections,
17 Xdnd, general X stuff, event loops, timeouts and idle handlers fast,
18 optimized, and convenient. It's a separate library so anyone can make
19 use of the work put into Ecore to make this job easy for applications.
20
21 ------------------------------------------------------------------------------
22 COMPILING AND INSTALLING:
23
24   ./configure
25   make
26 (as root unless youa re installing in your users directories):
27   make install
28       
29 ------------------------------------------------------------------------------
30 BUILDING PACKAGES:
31
32 RPM: To build rpm packages:
33   
34   sudo rpm -ta @PACKAGE@-@VERSION@.tar.gz
35
36 You will find rpm packages in your system /usr/src/redhat/* dirs (note you may
37 not need to use sudo or root if you have your own ~/.rpmrc. see rpm documents
38 for more details)
39
40 DEB: To build deb packages:
41
42   tar zvf @PACKAGE@-@VERSION@.tar.gz
43   cd @PACKAGE@-@VERSION@
44   dpkg-buildpackage -us -uc -rfakeroot
45   cd ..
46   rm -rf @PACKAGE@-@VERSION@
47
48 You will find all the debian source, binary etc. packages put in the directory
49 where you first untarred the source tarball.