summaryrefslogtreecommitdiff
path: root/ecore/README.in
diff options
context:
space:
mode:
Diffstat (limited to 'ecore/README.in')
-rw-r--r--ecore/README.in36
1 files changed, 36 insertions, 0 deletions
diff --git a/ecore/README.in b/ecore/README.in
new file mode 100644
index 0000000..7fede7a
--- /dev/null
+++ b/ecore/README.in
@@ -0,0 +1,36 @@
+Ecore @VERSION@
+
+Ecore is the event/X abstraction layer that makes doing selections,
+Xdnd, general X stuff, event loops, timeouts and idle handlers fast,
+optimized, and convenient. It's a separate library so anyone can make
+use of the work put into Ecore to make this job easy for applications.
+
+------------------------------------------------------------------------------
+COMPILING AND INSTALLING:
+
+ ./configure
+ make
+(as root unless youa re installing in your users directories):
+ make install
+
+------------------------------------------------------------------------------
+BUILDING PACKAGES:
+
+RPM: To build rpm packages:
+
+ sudo rpm -ta @PACKAGE@-@VERSION@.tar.gz
+
+You will find rpm packages in your system /usr/src/redhat/* dirs (note you may
+not need to use sudo or root if you have your own ~/.rpmrc. see rpm documents
+for more details)
+
+DEB: To build deb packages:
+
+ tar zvf @PACKAGE@-@VERSION@.tar.gz
+ cd @PACKAGE@-@VERSION@
+ dpkg-buildpackage -us -uc -rfakeroot
+ cd ..
+ rm -rf @PACKAGE@-@VERSION@
+
+You will find all the debian source, binary etc. packages put in the directory
+where you first untarred the source tarball.