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

Down palemoon (27.5.0)
author Xander Ziiryanoff <psychomaniak@xakep.ru>
date Sun Nov 26 09:27:42 2017 +0100 (2017-11-26)
parents f463de72afe3
children 0e7893ac206d
line source
1 # SliTaz package receipt v2.
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/fbdev/"
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"
17 # ARM use build system xorg-server-dev or manually install it in sysroot
18 BUILD_DEPENDS_arm=" "
19 SPLIT="xorg-xf86-video-fbdev-dev"
20 PKG_RULE="std-dev"
22 # Rules to configure and make the package.
23 compile_rules()
24 {
25 ./configure \
26 --sysconfdir=/etc \
27 --localstatedir=/var \
28 $CONFIGURE_ARGS &&
29 make &&
30 make install
31 }
33 # Rules to gen a SliTaz package suitable for Tazpkg.
34 genpkg_rules()
35 {
36 case $PACKAGE in
37 *-fbdev)
38 copy @std
39 DEPENDS="xorg-server"
40 TAGS="xorg display"
41 ;;
42 *-dev)
43 copy @dev
44 DEPENDS="xorg-xf86-video-fbdev xorg-server-dev"
45 ;;
46 esac
47 }