wok view xorg-xf86-video-mach64/receipt @ rev 23848

inkscape: update build_depends
author Richard Dunbar <mojo@slitaz.org>
date Sun Jun 14 23:18:03 2020 -0400 (2020-06-14)
parents 814c58f64f83
children 5d79829fa876
line source
1 # SliTaz package receipt.
3 PACKAGE="xorg-xf86-video-mach64"
4 VERSION="6.9.6"
5 CATEGORY="x-window"
6 SHORT_DESC="Xorg driver for ATI MACH 64 cards."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="MIT"
9 SOURCE="xf86-video-mach64"
10 TARBALL="$SOURCE-$VERSION.tar.bz2"
11 WEB_SITE="https://www.x.org/"
12 WGET_URL="$XORG_MIRROR/driver/$TARBALL"
13 #https://gitlab.freedesktop.org/xorg/driver/xf86-video-mach64
14 TAGS="xorg display"
16 DEPENDS="xorg-server"
17 BUILD_DEPENDS="xorg-server-dev"
19 MODS='/usr/lib/X11/modules'
21 # Rules to configure and make the package.
22 compile_rules()
23 {
24 ./configure \
25 --prefix=/usr \
26 --sysconfdir=/etc \
27 --mandir=/usr/share/man \
28 --localstatedir=/var \
29 --with-xorg-module-dir=$MODS \
30 $CONFIGURE_ARGS &&
31 make &&
32 make DESTDIR=$DESTDIR install
33 }
35 # Rules to gen a SliTaz package suitable for Tazpkg.
36 genpkg_rules()
37 {
38 mkdir -p $fs/usr/lib/X11/modules/drivers/
39 cp -a $install/usr/lib/X11/modules/drivers/*.so \
40 $fs/usr/lib/X11/modules/drivers/
41 }