blob: 037fd116d063de13a4fa38030f2861735f410cd0 (
plain)
1 # Description: Graphics library for the Linux framebuffer device
2 # URL: http://www.directfb.org
3 # Maintainer: Tilman Sauerbeck, tilman at crux dot nu
4
5 name=directfb
6 version=1.0.0
7 release=1
8 source=(http://www.directfb.org/downloads/Core/DirectFB-$version.tar.gz)
9
10 build() {
11 local EXTRA_ARGS
12
13 # uncomment the following line to build with support for the multi
14 # app core:
15 # EXTRA_ARGS="--enable-multi"
16
17 cd DirectFB-$version
18
19 ./configure --prefix=/usr --mandir=/usr/man \
20 --enable-zlib $EXTRA_ARGS
21
22 make
23 make DESTDIR=$PKG install
24 }
|