wok view xorg-xf86-video-mga/receipt @ rev 20423

Update some web_site to https
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Aug 09 12:16:16 2018 +0200 (2018-08-09)
parents fc33aae5387c
children 6b461ec27aea
line source
1 # SliTaz package receipt.
3 PACKAGE="xorg-xf86-video-mga"
4 VERSION="1.5.0"
5 CATEGORY="x-window"
6 SHORT_DESC="Xorg driver for Matrox cards."
7 MAINTAINER="keupont@no-log.org"
8 LICENSE="MIT"
9 SOURCE="xf86-video-mga"
10 TARBALL="$SOURCE-$VERSION.tar.bz2"
11 WEB_SITE="https://www.x.org/"
12 WGET_URL="$XORG_MIRROR/driver/$TARBALL"
13 TAGS="xorg display"
15 DEPENDS="xorg-server mesa-dri-mga"
16 BUILD_DEPENDS="xorg-server-dev"
18 MODS='/usr/lib/X11/modules'
20 # Rules to configure and make the package.
21 compile_rules()
22 {
23 cd $src
24 ./configure \
25 --sysconfdir=/etc \
26 --mandir=/usr/share/man \
27 --localstatedir=/var \
28 --with-xorg-module-dir=$MODS \
29 $CONFIGURE_ARGS &&
30 make && make install
31 }
33 # Rules to gen a SliTaz package suitable for Tazpkg.
34 genpkg_rules()
35 {
36 mkdir -p ${fs}${MODS}/drivers
37 cp -a ${install}${MODS}/drivers/*.so ${fs}${MODS}/drivers
38 }