blob: 3ffc06c01d2b57254cc4523b7ab9155b33c8e986 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
# Description: Librairie graphique pour le mode Frame buffer
# URL: http://www.directfb.org
# Maintainer: NuTyX core team
# Packager: thierryn1 at hispeed dot ch
# Depends on: libjpeg , libpng, freetype
name=directfb-1.0
version=1.4.11
release=1
source=(http://www.directfb.org/downloads/Core/DirectFB-${version%.*}/DirectFB-$version.tar.gz)
build() {
cd DirectFB-$version
./configure --prefix=/usr \
--enable-static \
--mandir=/usr/share/man \
--enable-zlib \
--enable-sdl \
--disable-vnc \
--disable-osx \
--infodir=/usr/share/info \
--enable-x11
make
make DESTDIR=$PKG install
}
|