You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
Kim Woelders 4b595dde3a v1.10.0 12 months ago
data Only set MAINTAINERCLEANFILES in top-level Makefile.am 2 years ago
doc doc: Assorted documentation intro updates 2 years ago
m4 Add feature to build with ASAN (--enable-gcc-asan) 2 years ago
misc Drop change log from before first version tag 2 years ago
src ANI loader: Multiframe suport 12 months ago
test test: test_load_2: Check frame 0/1 loading too 1 year ago
.git-src autofoo: Rework git tag/release stuff 1 year ago
.gitignore Drop imlib2-config (use pkg-config) 2 years ago
.indent.pro Add indent profile. 17 years ago
AUTHORS Add a Farbfeld loader 8 years ago
COPYING fix the copying license to 15 years ago
COPYING-PLAIN Fix common misspellings 13 years ago
ChangeLog v1.10.0 12 months ago
INSTALL fix install 19 years ago
Makefile.am autofoo: Rework git tag/release stuff 1 year ago
README.ID3 Added documentation for tag id3-link-url 19 years ago
README.in auto-package imlib2... 19 years ago
TODO Fix common misspellings 13 years ago
autogen.sh autogen.sh: Add -n as alternative to NOCONFIGURE 4 years ago
configure.ac v1.10.0 12 months ago
imlib2.pc.in don't _require_ freetype2 17 years ago
imlib2.spec.in imlib2.spec.in: Introduce acflags for configuration of rpmbuilds 2 years ago

README.in

Imlib2 @VERSION@

This is the Imlib 2 library - a library that does image file loading and
saving as well as rendering, manipulation, arbitrary polygon support, etc.

It does ALL of these operations FAST. Imlib2 also tries to be highly
intelligent about doing them, so writing naive programs can be done
easily, without sacrificing speed.

This is a complete rewrite over the Imlib 1.x series. The architecture is
more modular, simple, and flexible. See index.html in the doc/ directory
for more information.

Imlib2 requires several libraries to be already installed. These are:

libjpeg http://www.ijg.org/
libpng http://www.libpng.org/pub/png/libpng.html
freetype 2.1.x http://www.freetype.org/

For examples of this library in use, seek:

Eterm http://www.eterm.org/ (CVS version only, currently)
feh http://www.linuxbrit.co.uk/feh.html
geist http://www.linuxbrit.co.uk/geist.html

------------------------------------------------------------------------------
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.