wok view xorg-xf86-video-fbturbo/receipt @ rev 22147

updated xalan-c and xalan-c-dev (1.10.0 -> 1.11)
author Hans-G?nter Theisgen
date Wed Nov 06 16:26:14 2019 +0100 (2019-11-06)
parents
children d133cdf4d993
line source
1 # SliTaz package receipt.
3 PACKAGE="xorg-xf86-video-fbturbo"
4 VERSION="0.2.0"
5 CATEGORY="x-window"
6 SHORT_DESC="Xorg DDX driver for ARM devices (Allwinner, RPi and others)."
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="MIT"
9 SOURCE="xf86-video-fbturbo"
10 TARBALL="$SOURCE-$VERSION.tar.gz"
11 WEB_SITE="https://github.com/ssvb/xf86-video-fbturbo"
12 WGET_URL="$WEB_SITE/archive/$VERSION.tar.gz"
13 HOST_ARCH="i486 arm"
15 # 0.4.0 ---> fatal error: dri2.h: No such file or directory
16 #
17 # We must have DRI support into Xorg server. This is not the case
18 # actually because I stripped down Xorg build since it mesa are not
19 # ported yet.
21 BUILD_DEPENDS="xorg-server-dev"
23 # Rules to configure and make the package.
24 compile_rules()
25 {
26 autoreconf -vi
27 ./configure \
28 --with-xorg-module-dir=/usr/lib/X11/modules \
29 $CONFIGURE_ARGS &&
30 make && make install
31 }
33 # Rules to gen a SliTaz package suitable for Tazpkg.
34 genpkg_rules()
35 {
36 mkdir -p $fs/usr/lib/X11/modules/drivers/
37 cp -a $install/usr/lib/X11/modules/drivers/*.so \
38 $fs/usr/lib/X11/modules/drivers/
39 }