1 2 X B u b b l e 3 4What is XBubble ? 5----------------- 6 7XBubble is a Puzzle Bubble (PB) / Bust-A-Move (BAM) clone for Unix/X11 8platforms. It was written from scratch with no real intent to exactly 9reproduce the original game. 10 11Requirements 12------------ 13In order to play XBubble you need: 14 151) a Unix/X11 system. 162) the PNG library (libpng). 17 18Installation 19------------ 20Just type: 21 22 ./configure 23 make 24 25If something goes wrong, try ./configure --help. For instance, if you have 26installed libpng in an unusual place where configure can't find it, type 27(in a Bourne compatible shell): 28 29 CPPFLAGS=-I/unusual/place/include LIBS=-L/unusual/place/lib ./configure 30 31When make has successfully completed, you can try xbubble with: 32 33 src/xbubble -r graphics 34 35and then of course install it with: 36 37 make install 38 39See INSTALL for more information. 40