blob: 28c5c8e9481c887a0d9535118c5db2d01e72edb2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
DESCRIPTION = "A portable C++ GUI library designed for games using Allegro, HGE, OpenGL, OpenLayer and/or SDL."
HOMEPAGE = "http://guichan.sourceforge.net"
DEPENDS = "virtual/libsdl libsdl-image"
SRC_URI = "http://guichan.googlecode.com/files/guichan-0.7.1.tar.gz"
inherit autotools
EXTRA_OECONF = "--disable-opengl --disable-glut --disable-allegro \
--enable-sdlimage --enable-sdl"
PACKAGES =+ "libguichan libguichan-sdl"
FILES_libguichan = "${libdir}/libguichan.so.*"
FILES_libguichan-sdl = "${libdir}/libguichan_sdl.so.*"
do_stage () {
autotools_stage_all
}
|