wok-current view xorg-xf86-video-mga/receipt @ rev 23936
syslinux/isohybrid: force GPT detection (again)
| author | Pascal Bellard <pascal.bellard@slitaz.org> | 
|---|---|
| date | Wed Sep 09 12:46:01 2020 +0000 (2020-09-09) | 
| parents | 814c58f64f83 | 
| children | 5d79829fa876 | 
 line source
     1 # SliTaz package receipt.
     3 PACKAGE="xorg-xf86-video-mga"
     4 VERSION="2.0.0"
     5 CATEGORY="x-window"
     6 TAGS="xorg display"
     7 SHORT_DESC="Xorg driver for Matrox cards."
     8 MAINTAINER="keupont@no-log.org"
     9 LICENSE="MIT"
    10 WEB_SITE="https://www.x.org/wiki/"
    12 SOURCE="xf86-video-mga"
    13 TARBALL="$SOURCE-$VERSION.tar.bz2"
    14 WGET_URL="$XORG_MIRROR/driver/$TARBALL"
    16 DEPENDS="mesa-dri-mga 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 		--sysconfdir=/etc		\
    26 		--mandir=/usr/share/man		\
    27 		--localstatedir=/var		\
    28 		--with-xorg-module-dir=$MODS	\
    29 		$CONFIGURE_ARGS &&
    30 	make &&
    31 	make install
    32 }
    34 # Rules to gen a SliTaz package suitable for Tazpkg.
    35 genpkg_rules()
    36 {
    37 	mkdir -p ${fs}${MODS}/drivers
    38 	cp -a ${install}${MODS}/drivers/*.so ${fs}${MODS}/drivers
    39 }