wok-undigest annotate xorg-xf86-video-mach64/receipt @ rev 1223

copied libxext recipe from wok-next
author Hans-G?nter Theisgen
date Fri Nov 15 17:38:29 2019 +0100 (2019-11-15)
parents 980ac6fe253d
children
rev   line source
pascal@956 1 # SliTaz package receipt.
pascal@956 2
pascal@956 3 PACKAGE="xorg-xf86-video-mach64"
pascal@956 4 VERSION="6.9.1"
pascal@956 5 CATEGORY="x-window"
pascal@956 6 SHORT_DESC="Xorg server Mach64 driver."
pascal@956 7 MAINTAINER="gokhlayeh@slitaz.org"
pascal@1069 8 LICENSE="MIT"
pascal@956 9 SOURCE="xf86-video-mach64"
pascal@956 10 TARBALL="$SOURCE-$VERSION.tar.bz2"
pascal@956 11 WEB_SITE="http://www.x.org/"
pascal@956 12 WGET_URL="$XORG_MIRROR/driver/$TARBALL"
pascal@956 13 TAGS="xorg display"
pascal@956 14
pascal@956 15 DEPENDS="xorg-server mesa-dri-mach64"
pascal@956 16 BUILD_DEPENDS="xorg-server-dev"
pascal@956 17
pascal@956 18 MODS='/usr/lib/X11/modules'
pascal@956 19
pascal@956 20 # Rules to configure and make the package.
pascal@956 21 compile_rules()
pascal@956 22 {
pascal@956 23 cd $src
pascal@956 24 ./configure \
pascal@956 25 --sysconfdir=/etc \
pascal@956 26 --mandir=/usr/share/man \
pascal@956 27 --localstatedir=/var \
pascal@956 28 --with-xorg-module-dir=$MODS \
pascal@956 29 --enable-dri \
pascal@956 30 $CONFIGURE_ARGS &&
pascal@956 31 make && make install
pascal@956 32 }
pascal@956 33
pascal@956 34 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@956 35 genpkg_rules()
pascal@956 36 {
pascal@956 37 mkdir -p ${fs}${MODS}/drivers
pascal@956 38 cp -a ${install}${MODS}/drivers/*.so ${fs}${MODS}/drivers
pascal@956 39 }
pascal@956 40