wok-next view xorg-xf86-video-qxl/receipt @ rev 19849

Fix packaging: lcms, libtool; up slitaz-tools-*; add mathomatic.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Mon Aug 28 19:54:13 2017 +0300 (2017-08-28)
parents
children 6f8a3b28c57b
line source
1 # SliTaz package receipt v2.
3 PACKAGE="xorg-xf86-video-qxl"
4 VERSION="0.1.5"
5 CATEGORY="x-window"
6 SHORT_DESC="Xorg driver for QXL virtual GPU"
7 MAINTAINER="al.bobylev@gmail.com"
8 LICENSE="MIT"
9 WEB_SITE="https://www.x.org/wiki/"
11 TARBALL="xf86-video-qxl-$VERSION.tar.bz2"
12 WGET_URL="$XORG_MIRROR/driver/$TARBALL"
14 BUILD_DEPENDS="xorg-server-dev xorg-libXfont-dev xorg-xf86dgaproto \
15 spice-protocol"
16 SPLIT="xorg-xf86-video-qxl-dev"
17 PKG_RULE="std-dev"
19 # Rules to configure and make the package.
20 compile_rules()
21 {
22 ./configure \
23 --sysconfdir=/etc \
24 --localstatedir=/var \
25 $CONFIGURE_ARGS &&
26 make &&
27 make install
28 }
30 # Rules to gen a SliTaz package suitable for Tazpkg.
31 genpkg_rules()
32 {
33 case $PACKAGE in
34 *-qxl)
35 copy @std
36 DEPENDS="xorg-server eudev"
37 TAGS="xorg display"
38 ;;
39 *-dev)
40 copy @dev
41 DEPENDS="xorg-xf86-video-qxl xorg-server-dev eudev-dev"
42 ;;
43 esac
44 }