wok-next view xorg-xf86-video-fbdev/receipt @ rev 19766

Up cookutils.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Mon Jun 12 11:40:38 2017 +0300 (2017-06-12)
parents 66dc81a8e443
children f463de72afe3
line source
1 # SliTaz package receipt.
3 PACKAGE="xorg-xf86-video-fbdev"
4 VERSION="0.4.4"
5 CATEGORY="x-window"
6 SHORT_DESC="Xorg video driver for framebuffer device."
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="MIT"
9 WEB_SITE="https://www.x.org/wiki/"
10 HOST_ARCH="i486 arm"
12 TARBALL="xf86-video-fbdev-$VERSION.tar.bz2"
13 WGET_URL="$XORG_MIRROR/driver/$TARBALL"
15 BUILD_DEPENDS="xorg-util-macros xorg-server-dev xorg-libXrandr-dev \
16 xorg-libXrender-dev xorg-libXv-dev xorg-xproto xorg-fontsproto"
18 # ARM use build system xorg-server-dev or manually install it in sysroot
19 case "$ARCH" in
20 arm) BUILD_DEPENDS="" ;;
21 esac
23 # Rules to configure and make the package.
24 compile_rules()
25 {
26 ./configure \
27 --sysconfdir=/etc \
28 --localstatedir=/var \
29 $CONFIGURE_ARGS &&
30 make && make install
31 }
33 # Rules to gen a SliTaz package suitable for Tazpkg.
34 genpkg_rules()
35 {
36 cook_copy_files *.so
37 }