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

Add sshrc (again)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Dec 21 12:20:01 2019 +0100 (2019-12-21)
parents 94128ce5fcfd
children 5ea0ce1cecc0
line source
1 # SliTaz package receipt.
3 PACKAGE="xorg-xf86-video-fbturbo"
4 VERSION="0.4.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 WEB_SITE="https://github.com/ssvb/xf86-video-fbturbo"
11 SOURCE="xf86-video-fbturbo"
12 TARBALL="$SOURCE-$VERSION.tar.gz"
13 WGET_URL="$WEB_SITE/archive/$VERSION.tar.gz"
15 BUILD_DEPENDS="xorg-server-dev"
17 HOST_ARCH="i486 arm"
19 # Rules to configure and make the package.
20 compile_rules()
21 {
22 autoreconf -vi
23 ./configure \
24 --with-xorg-module-dir=/usr/lib/X11/modules \
25 $CONFIGURE_ARGS &&
26 make &&
27 make install
28 }
30 # Rules to gen a SliTaz package suitable for Tazpkg.
31 genpkg_rules()
32 {
33 mkdir -p $fs/usr/lib/X11/modules/drivers
34 cp -a $install/usr/lib/X11/modules/drivers/*.so \
35 $fs/usr/lib/X11/modules/drivers/
36 }