wok annotate xorg-xf86-video-ast/receipt @ rev 20700

updated afio (2.5.1 -> 2.5.2)
author Hans-G?nter Theisgen
date Tue Feb 05 17:01:36 2019 +0100 (2019-02-05)
parents 6ddedd765826
children 5d79829fa876
rev   line source
pascal@19564 1 # SliTaz package receipt.
pascal@19564 2
pascal@19564 3 PACKAGE="xorg-xf86-video-ast"
pascal@19564 4 VERSION="1.1.5"
pascal@19564 5 CATEGORY="x-window"
pascal@19564 6 SHORT_DESC="Xorg server ASpeed Technologies graphics driver."
pascal@19564 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@19564 8 LICENSE="MIT"
pascal@19564 9 SOURCE="xf86-video-ast"
pascal@19564 10 TARBALL="$SOURCE-$VERSION.tar.bz2"
pascal@20423 11 WEB_SITE="https://www.x.org/"
pascal@19564 12 WGET_URL="$XORG_MIRROR/driver/$TARBALL"
pascal@19564 13 TAGS="xorg display"
pascal@19564 14
pascal@19564 15 DEPENDS="xorg-server"
pascal@19564 16 BUILD_DEPENDS="xorg-server-dev libpthread-stubs-dev"
pascal@19564 17
pascal@19564 18 MODS='/usr/lib/X11/modules'
pascal@19564 19
pascal@19564 20 # Rules to configure and make the package.
pascal@19564 21 compile_rules()
pascal@19564 22 {
pascal@19564 23 ./configure \
pascal@19564 24 --sysconfdir=/etc \
pascal@19564 25 --mandir=/usr/share/man \
pascal@19564 26 --localstatedir=/var \
pascal@19564 27 --with-xorg-module-dir=$MODS \
pascal@19564 28 $CONFIGURE_ARGS &&
pascal@19564 29 make && make install
pascal@19564 30 }
pascal@19564 31
pascal@19564 32 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@19564 33 genpkg_rules()
pascal@19564 34 {
pascal@19564 35 mkdir -p ${fs}${MODS}/drivers
pascal@19564 36 cp -a ${install}${MODS}/drivers/*.so ${fs}${MODS}/drivers/
pascal@19564 37 }